1. 89b2676 net: implement TCP connection setup with fast failover by Mikio Hara · 12 years ago
  2. 3c6558a net: add netaddr interface by Mikio Hara · 12 years ago
  3. 11320fa net: have separate read and write processing threads on windows by Alex Brainman · 12 years ago
  4. fce0608 net: dragonfly support by Joel Sing · 12 years ago
  5. 45cb2e1 net: make Dial, Listen and ListenPacket return consistent error value by Mikio Hara · 12 years ago
  6. 23e15f7 net: add special netFD mutex by Dmitriy Vyukov · 12 years ago
  7. 6a76bca36 net: separate pollster initialization from network file descriptor allocation by Mikio Hara · 12 years ago
  8. b2fcdfa net: detect bad F_DUPFD_CLOEXEC on OS X 10.6 by Brad Fitzpatrick · 12 years ago
  9. 37feacf net: use F_DUPFD_CLOEXEC when duping fds by Brad Fitzpatrick · 12 years ago
  10. 3b6de5e net: fix memory leak on unix by Dmitriy Vyukov · 12 years ago
  11. 1a94895 net: move system common global variables into fd_unix.go by Alex Brainman · 12 years ago
  12. ca6b1f3 net: do not call syscall.Bind twice on windows by Alex Brainman · 12 years ago
  13. e13341e net: fix possible runtime.PollDesc leak when connect or listen fails by Mikio Hara · 12 years ago
  14. 751a24e net: delete DialOpt and DialOption; add struct Dialer by Brad Fitzpatrick · 12 years ago
  15. 4484078 runtime: explicitly remove fd's from epoll waitset before close() Fixes #5061. by Dmitriy Vyukov · 12 years ago
  16. a11d7d4 net: prepare connect() for new network poller by Dmitriy Vyukov · 12 years ago
  17. b09d881 net: refactoring in preparation for integrated network poller by Dmitriy Vyukov · 12 years ago
  18. b000f22 net: more refactoring in preparation for runtime integrated pollster by Dmitriy Vyukov · 12 years ago
  19. 0f136f2 net: fix accept/connect deadline handling by Dmitriy Vyukov · 12 years ago
  20. f42a11e net: eliminate odd if statement with identical branches by John Graham-Cumming · 12 years ago
  21. 752fec2 net: add DialOpt, the extensible Dial w/ options dialer by Brad Fitzpatrick · 12 years ago
  22. 6dfd386 net: simplify Dial, Listen, ListenPacket and those helpers by Mikio Hara · 12 years ago
  23. 18441e8 net: do not use RLock around Accept by Russ Cox · 12 years ago
  24. 0592c44 net: permit pollster DelFD to return whether to call Wakeup by Ian Lance Taylor · 12 years ago
  25. 31f58dc net, syscall: use accept4 and SOCK_CLOEXEC on Linux by Ian Lance Taylor · 12 years ago
  26. 810e439 net: use windows ConnectEx to dial (when possible) by Alex Brainman · 12 years ago
  27. 9fb9699 net: fix data races on deadline vars by Dave Cheney · 12 years ago
  28. b18a7c7 net: remove unnecessary Close contention. by Rémy Oudompheng · 12 years ago
  29. 5b425cc undo CL 6855110 / 869253ef7009 by Dave Cheney · 12 years ago
  30. be0d84e net: fix data races on deadline vars by Dave Cheney · 12 years ago
  31. 28b59942 net: move deadline logic into pollServer by Dave Cheney · 12 years ago
  32. 73b3e23 net: never return -1 bytes read from netFD.Read by Dave Cheney · 12 years ago
  33. 5fa3aeb net: check read and write deadlines before doing syscalls by Brad Fitzpatrick · 12 years ago
  34. d28133d net: remove another unguarded sysfile == nil check by Dave Cheney · 12 years ago
  35. 0bfece0 net: remove unused nil check by Dave Cheney · 12 years ago
  36. f668e0a net: consolidate multiple init functions by Mikio Hara · 12 years ago
  37. ef6806f net: close fds eagerly in DialTimeout by Brad Fitzpatrick · 12 years ago
  38. eb2e6e5 net: implement IPv6 support for windows by Alex Brainman · 12 years ago
  39. 84e2046 net: use better error messages on windows by Alex Brainman · 12 years ago
  40. fa3e4fc net: fix connection resets when closed on windows by Alex Brainman · 12 years ago
  41. 067315c net: avoid allocation in setAddr by Dave Cheney · 12 years ago
  42. 8c2b131 net: return error from pollster rather than panicing by Dave Cheney · 12 years ago
  43. 7014bc6 net: spread fd over several pollservers. by Sébastien Paolacci · 12 years ago
  44. 9773ac1 net: fix comment by Mikio Hara · 13 years ago
  45. e4389c0 undo CL 6395055 / 2518eee18c4f by Mikio Hara · 13 years ago
  46. 6c4645c net: rename files to clarify platform dependency by Mikio Hara · 13 years ago[Renamed from src/pkg/net/fd.go]
  47. 6cf77f2 net: avoid nil pointer dereference when RemoteAddr.String method chain is called by Mikio Hara · 13 years ago
  48. 6d5eb61 net: remove unused fields by Dmitriy Vyukov · 13 years ago
  49. 2d2866e net: fix TCPListener file leak to child processes by Brad Fitzpatrick · 13 years ago
  50. a63c37b net: ignore ECONNABORTED from syscall.Accept by Devon H. O'Dell · 13 years ago
  51. 213997a net: delete debugging print by Russ Cox · 13 years ago
  52. 56069f0 os: delete os.EINVAL and so on by Rob Pike · 13 years ago
  53. 8c4fecd net: fix windows build by Mikio Hara · 13 years ago
  54. 5e4e3d8 net: avoid Shutdown during Close by Russ Cox · 13 years ago
  55. 4152b43 os: delete Exec, NewFile takes uintptr, rename ShellExpand, doc fixes by Brad Fitzpatrick · 13 years ago
  56. d3285f2 net: remove types InvalidConnError and UnknownSocketError by Brad Fitzpatrick · 13 years ago
  57. 28397be net: replace error variable name e, errno with err by Mikio Hara · 13 years ago
  58. 3d400db net: update comments to remove redundant "net" prefix by Mikio Hara · 13 years ago
  59. 974fa75 net: make WriteTo fail when UDPConn is already connected by Mikio Hara · 13 years ago
  60. 743c2d0 net: fix broken setDefaultSockopts by Mikio Hara · 13 years ago
  61. b71883e net: change SetTimeout to SetDeadline by Brad Fitzpatrick · 13 years ago
  62. 9ca57a7 crypto/mime/net/time: add netbsd to +build tags by Joel Sing · 13 years ago
  63. 01507b9 net: fix Windows build by Brad Fitzpatrick · 13 years ago
  64. 03823b8 use new time API by Russ Cox · 13 years ago
  65. c017a82 syscall: use error by Russ Cox · 13 years ago
  66. eb69292 src/pkg/[n-z]*: gofix -r error -force=error by Russ Cox · 13 years ago
  67. 313c822 gofix -r mapdelete by Russ Cox · 13 years ago
  68. 791b2a4 net: Return error from CloseRead and CloseWrite. by Albert Strasheim · 13 years ago
  69. 394842e net: add shutdown: TCPConn.CloseWrite and CloseRead by Brad Fitzpatrick · 13 years ago
  70. 2715956 build: add build comments to core packages by Russ Cox · 14 years ago
  71. d72c96d net: Added function SetTimeout() to interface Listener. Fixes #2148. by Aleksandar Dezelin · 14 years ago
  72. c20ced9 net: return correct local address for an accepted TCP connection by Mikio Hara · 14 years ago
  73. 0793176 net: move bind back to sock.go by Alexey Borzenkov · 14 years ago
  74. 2f45f72 net: implement non-blocking connect by Alexey Borzenkov · 14 years ago
  75. 0caa0c0 net: let OS-specific AddFD routine wake up polling thread. by Ian Lance Taylor · 14 years ago
  76. 42bc7fc net: Don't force epoll/kqueue to wake up in order to add new events. by Ian Lance Taylor · 14 years ago
  77. c01238a net: don't loop to drain wakeup pipe. by Ian Lance Taylor · 14 years ago
  78. f4e76d8 replace non-blocking send, receive syntax with select by Russ Cox · 14 years ago
  79. 3a97119 net, syscall: return source address in Recvmsg by Albert Strasheim · 14 years ago
  80. 3a052b5 net: use closesocket api instead of CloseHandle on Windows by Alex Brainman · 14 years ago
  81. ed1cbca net: fix close of Listener by Michael Hoisie · 14 years ago
  82. cf6c212 syscall, net: Add Recvmsg and Sendmsg on Linux. by Albert Strasheim · 14 years ago
  83. a144e3e net: provide public access to file descriptors by Keith Rarick · 14 years ago
  84. c78be46 once: replace all uses of package once with sync.Once. by Rob Pike · 15 years ago
  85. a9a24d4 Corrected a print statement from printing netfd to fd. by Vinu Rajashekhar · 15 years ago
  86. 00ad47f Move the function Run() back into fd.go. by Vinu Rajashekhar · 15 years ago
  87. e0334ab Move the functions, newPollServer and Run, from fd.go to a new source file. by Vinu Rajashekhar · 15 years ago
  88. bb84f4b changes &x -> x[0:] for array to slice conversion by Russ Cox · 15 years ago
  89. 9192ec2 netFD: fix race between Close and Read/Write by Michael Hoisie · 15 years ago
  90. 47a0533 net: introduce net.Error interface by Russ Cox · 15 years ago
  91. caa149f net: use chan bool instead of chan *netFD to avoid cycle by Russ Cox · 15 years ago
  92. 00f9f0c single argument panic by Russ Cox · 15 years ago
  93. 325cf8e delete all uses of panicln by rewriting them using panic or, by Rob Pike · 15 years ago
  94. 3b82f29 net: fix network timeout boundary condition. Fixes #472. by Stephen Ma · 15 years ago
  95. f44fa9b gofmt: experiment: align values in map composites where possible by Robert Griesemer · 15 years ago
  96. a3d1045 1) Change default gofmt default settings for by Robert Griesemer · 15 years ago
  97. e89441b net: test and fix support for 0-length datagram packets. by Russ Cox · 15 years ago
  98. eb16346 net: fix netFD.Close races by Devon H. O'Dell · 15 years ago
  99. 9ac4449 gofmt -r 'α[β:len(α)] -> α[β:]' -w src/cmd src/pkg by Russ Cox · 15 years ago
  100. ef8f483 net: remove race condition on Close. by Adam Langley · 15 years ago