summary refs log tree commit diff stats
path: root/lib/pure/nativesockets.nim
Commit message (Expand)AuthorAgeFilesLines
* tiny style change [refactoring]Andreas Rumpf2019-08-081-1/+1
* there is only one style -- my styleAraq2019-07-101-6/+6
* make more parts of the stdlib compile with --styleCheck:errorAraq2019-07-101-2/+2
* styleCheck: make the compiler and large parts of the stdlib compatible with -...Araq2019-07-101-9/+9
* ABI fixes for OSX/BSD; fixes #6860 (#11666)Andreas Rumpf2019-07-061-6/+6
* Render deprecated pragmas (#8886)LemonBoy2019-06-031-6/+2
* Remove long deprecated stuff (#10332)Miran2019-01-181-63/+0
* Fix getAddrInfo, add IPPROTO_ICMPV6 Closes #10198Federico Ceratto2019-01-061-2/+5
* Merge pull request #9915 from zevv/asyncnet-unixDominik Picheta2018-12-121-0/+11
|\
| * Added basic AF_UNIX support to asyncnet.Ico Doornekamp2018-12-091-0/+11
* | stdlib: documenation updates, the exception names have been changedAndreas Rumpf2018-10-251-2/+2
|/
* Make getSockDomain work with AF_UNIX socketsLemonBoy2018-09-241-7/+4
* Convert *_family fields to cushortLemonBoy2018-09-191-22/+22
* Haiku support for Nim (#8542)alaviss2018-08-141-2/+3
* remove deprecated stuff from the stdlib; introduce better deprecation warningsAraq2018-05-051-4/+1
* Change type of `Timeval.tv_sec` to `posix.Time` (#7646)Oscar Nihlgård2018-04-181-2/+6
* make nativesockets.Hostent.addrlist readable for ipv4 af_inet addresses (see ...skilchen2018-04-131-2/+18
* Fixed crash/interface. Added tests.Yuriy Glukhov2018-03-151-1/+1
* Fixes #4995. (#7157)Dominik Picheta2018-02-131-2/+22
* Implements nativesockets.accept.Dominik Picheta2017-11-241-2/+15
* breaking change: arrays of char do not convert to cstring; ptr to array of ch...Andreas Rumpf2017-10-101-6/+8
* Merge branch 'stringify-array' of https://github.com/krux02/Nim into krux02-s...Andreas Rumpf2017-10-091-2/+2
|\
| * removed newString proc again, reverted some unnecesary changesArne Döring2017-07-241-2/+2
* | Fix `getPeerAddr()` `getPeerAddr()`: +`sin6_addr` (#6410)wt2017-09-211-2/+2
* | Introduce first class support for Android (#5772)Fredrik Høisæther Rasch2017-08-061-1/+1
|/
* Implement dial, support IPv6 in httpclient (#5763)Ruslan Mustakov2017-05-021-16/+47
* Posix from detect (#5697)Jacek Sieka2017-04-121-6/+6
* Fixes ambiguity introduced by #5390.Dominik Picheta2017-04-091-2/+2
* Add gethostname to nativesockets (#5443)Federico Ceratto2017-03-011-0/+16
* cleaned up accept-close-race fix #5279Araq2017-02-071-25/+0
* Move checkCloseError to nativesocketsRuslan Mustakov2017-02-071-0/+25
* Fix Windows accept() to fail future instead of raisingRuslan Mustakov2017-02-011-1/+2
* deprecated nativesockets.dealloc, use freeAddrInfo instead; fixed stdlib depr...Andreas Rumpf2017-01-301-10/+12
* Fix nativesockets.select()Loris Pederiva2017-01-181-7/+30
* Added 'android4' define support that declares a different gethostbyaddr. Fixe...Ruslan Mustakov2016-06-221-2/+7
* Merge branch 'unix-sockets' of https://github.com/girvo/Nim into girvo-unix-s...Dominik Picheta2016-05-301-1/+1
|\
| * net.nim: add support for Unix socketsMichał Zieliński2015-10-281-1/+1
* | Merge pull request #3648 from FedericoCeratto/reuse_portAndreas Rumpf2016-05-291-1/+1
|\ \
| * | Add SO_REUSEPORT supportFederico Ceratto2015-12-161-1/+1
* | | Define ports as uint16s to fix #3484Josep Sanjuas2016-03-271-15/+51
* | | Fixed deprecation warnings while Nim compiles.Hans Raaf2016-01-181-1/+1
* | | Fix nativesockets compilation on OpenBSD and NetBSDdef2015-12-231-1/+1
|/ /
* | Fixed getAddrInfo on androidYuriy Glukhov2015-12-081-1/+2
* | OpenBSD doesn't support AI_V4MAPPEDJuan Francisco Cantero Hurtado2015-11-231-1/+3
|/
* Merge remote-tracking branch 'origin/devel' into fix-test-failuresAman Gupta2015-10-061-1/+0
* Rename rawsockets module to nativesocketsAdam Strzelecki2015-10-031-0/+553
ram <vc@akkartik.com> 2016-09-12 00:06:40 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2016-09-12 00:38:36 -0700 3337 - first use of type abbreviations: text' href='/akkartik/mu/commit/018type_abbreviations.cc?h=main&id=ea19d0dc2c11f48ca384fb087b4e44ef400bfaa2'>ea19d0dc ^
cdf0f349 ^



59085fca ^



cdf0f349 ^












59e47aca ^
cdf0f349 ^











1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196