summary refs log tree commit diff stats
path: root/lib/pure/net.nim
Commit message (Expand)AuthorAgeFilesLines
* Export `==` from net module for TPort.Dominik Picheta2014-08-171-1/+1
* Fix asyncnet example. Rearrange net code.Dominik Picheta2014-08-101-282/+282
* Added SafeDisconn for accept.Dominik Picheta2014-08-101-5/+17
* More future debug info. Added new error code to SafeDisconn list.Dominik Picheta2014-08-091-1/+1
* Implement safe flags for socket operations.Dominik Picheta2014-07-131-15/+56
* Allow async lambdas. Other socket modifications.Dominik Picheta2014-06-191-1/+1
* async might work now reliablyAraq2014-04-301-0/+2
* Fixes docgen.Dominik Picheta2014-04-061-4/+7
* Implemented async for httpclient.Dominik Picheta2014-03-261-1/+1
* Move asyncdispatch tests to asyncnet.Dominik Picheta2014-03-261-15/+15
* Moved the global dispatcher to asyncdispatch.Dominik Picheta2014-03-231-4/+4
* Many renames. Created high level asyncnet module.Dominik Picheta2014-03-221-2/+2
* Copied most blocking socket operations to the net module.Dominik Picheta2014-03-221-20/+811
* Clean up IP address code in net module.Dominik Picheta2014-03-221-28/+54
* Make the IP address exceptions more detailedMatthias Einwag2014-03-141-19/+24
* raise exceptions through newExceptionMatthias Einwag2014-03-091-18/+18
* $ for TIpAddress now prints in the recommended formatMatthias Einwag2014-03-041-2/+13
* Use character ranges from strutils.Matthias Einwag2014-03-041-6/+17
* Added a IpAddress structure to the net moduleMatthias Einwag2014-03-041-1/+231
* Implemented selector support for asyncio2.Dominik Picheta2014-02-221-1/+16
* Added new sockets modules: asyncio2, net, and sockets2.Dominik Picheta2014-02-081-0/+40
d?h=devel&id=a16e6bd22a4c238765bcf692ddfd3f86c39c4612'>a16e6bd22 ^
03b05bd34 ^
57dc4ca22 ^
03b05bd34 ^

a16e6bd22 ^
1a7fdb09d ^



93f74e4f9 ^
03b05bd34 ^
a16e6bd22 ^
03b05bd34 ^
a16e6bd22 ^
03b05bd34 ^



9e170f115 ^
93f74e4f9 ^
823b3c250 ^
03b05bd34 ^
506418ef5 ^
a16e6bd22 ^
86c65db18 ^
f97decaa2 ^


93f74e4f9 ^
c3229dc1c ^
dbcffcfcc ^


bc9749310 ^
3c870d3bb ^

dbcffcfcc ^
506418ef5 ^
dbcffcfcc ^
506418ef5 ^
dbcffcfcc ^

506418ef5 ^
a16e6bd22 ^
03b05bd34 ^

a16e6bd22 ^
03b05bd34 ^
c3229dc1c ^
03b05bd34 ^

93f74e4f9 ^
a16e6bd22 ^
03b05bd34 ^
1a7fdb09d ^
93f74e4f9 ^
03b05bd34 ^
49d810f34 ^
03b05bd34 ^

ae0e5604f ^
49d810f34 ^
46ee026e7 ^
f97decaa2 ^

342834d7f ^


da4215af6 ^
0fff332b8 ^
342834d7f ^
46ee026e7 ^
c3229dc1c ^
c8da41721 ^
03b05bd34 ^

510392bc6 ^
46ee026e7 ^
da4215af6 ^
11a664dfb ^



46ee026e7 ^

03b05bd34 ^
3cef2129b ^
93f74e4f9 ^
46ee026e7 ^

03b05bd34 ^
46ee026e7 ^
03b05bd34 ^





03b05bd34 ^










da2fd42e6 ^
03b05bd34 ^







342834d7f ^
03b05bd34 ^




a16e6bd22 ^
342834d7f ^


6b38b37b4 ^
342834d7f ^


















6b38b37b4 ^
342834d7f ^
a16e6bd22 ^
03b05bd34 ^




1a7fdb09d ^
03b05bd34 ^
8f73753a2 ^
03b05bd34 ^







b67dea7a3 ^

03b05bd34 ^
60d437427 ^
03b05bd34 ^










03b05bd34 ^

03b05bd34 ^
d1cf04a38 ^
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218