summary refs log tree commit diff stats
path: root/lib/pure/nativesockets.nim
Commit message (Collapse)AuthorAgeFilesLines
* Added 'android4' define support that declares a different gethostbyaddr. ↵Ruslan Mustakov2016-06-221-2/+7
| | | | Fixes #4376
* Merge branch 'unix-sockets' of https://github.com/girvo/Nim into ↵Dominik Picheta2016-05-301-1/+1
|\ | | | | | | girvo-unix-sockets
| * 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 support
| * | 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
| | | | | | | | | | | | | | | I just removed unsigned and changed a writeLn() call to writeLine() to avoid the remaining deprecation warnings.
* | | 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
|/ | | Related to #3534
* 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
This change was done to avoid confusion with TCP/IP raw sockets. Native sockets module represents handling native system low level socket API in general and is not just limited anyhow to TCP/IP raw sockets. A stub lib/deprecated/pure/rawsockets.nim module has been added as compatibility layer for old code using rawsockets, so this change will not break existing code.
id='n294' href='#n294'>294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455