1. a38a917 all: remove the nacl port (part 1) by Brad Fitzpatrick · 5 years ago
  2. 9ff11b0 net: add AIX operating system by Clément Chigot · 6 years ago
  3. ef9217e net: add js/wasm architecture by Richard Musiol · 7 years ago
  4. 3c4d3bd net: add ListenConfig, Dialer.Control to permit socket opts before listen/dial by Audrius Butkevicius · 7 years ago
  5. c6295e7 net: move dial and listen functions under sysDialer, sysListener by Audrius Butkevicius · 7 years ago
  6. 1a0b1cc net: fix Dial(":80") on Windows by Russ Cox · 8 years ago
  7. eb88b3e net: add (*UnixListener).SetUnlinkOnClose by Russ Cox · 8 years ago
  8. 13558c4 net: only remove Unix domain socket file on the first call to Close by Russ Cox · 8 years ago
  9. b6b4004 net: context plumbing, add Dialer.DialContext by Brad Fitzpatrick · 9 years ago
  10. 5ce0170 net: deduplicate Unix socket code by Mikio Hara · 9 years ago
  11. b0f4ee5 net: deduplicate TCP socket code by Mikio Hara · 9 years ago
  12. 5fea2cc all: single space after period. by Brad Fitzpatrick · 9 years ago
  13. 5194744 all: make copyright headers consistent with one space after period by Brad Fitzpatrick · 9 years ago
  14. 351c15f all: remove public named return values when useless by Brad Fitzpatrick · 9 years ago
  15. 24a83d3 net: add Dialer.Cancel to cancel pending dials by Brad Fitzpatrick · 9 years ago
  16. a4fd325 net: do not unlink unix socket in UnixListener created from fd by Russ Cox · 9 years ago
  17. 22829bd net: don't return non-nil interface values as Source, Addr in OpError by Mikio Hara · 10 years ago
  18. afd2d2b net: add Source field to OpError by Mikio Hara · 10 years ago
  19. 2173a27 net: fix inconsistent error values on setters by Mikio Hara · 10 years ago
  20. 8851113 net: fix inconsistent error values on File by Mikio Hara · 10 years ago
  21. 4540e16 net: fix inconsistent error values on Accept by Mikio Hara · 10 years ago
  22. 310db63 net: fix inconsistent error values on Close by Mikio Hara · 10 years ago
  23. 11b5f98 net: fix inconsistent error values on Write by Mikio Hara · 10 years ago
  24. ec11444 net: fix inconsistent error values on Read by Mikio Hara · 10 years ago
  25. a5dec38 net: make multi-IP resolution more flexible. by Paul Marks · 10 years ago
  26. 7e43aee net: document that user shouldn't modify returned Addr by Shenghou Ma · 10 years ago
  27. c007ce8 build: move package sources from src/pkg to src by Russ Cox · 10 years ago[Renamed from src/pkg/net/unixsock_posix.go]
  28. 5c055e7 net: consolidate sockaddrToAddr functions by Mikio Hara · 10 years ago
  29. ebe5f20 net: don't export netFD closeRead and closeWrite methods by Mikio Hara · 11 years ago
  30. 7d299d0 net: don't export netFD readFrom, writeTo, readMsg, writeMsg methods by Ian Lance Taylor · 11 years ago
  31. 67a5181 net: make WriteTo, WriteToUnix and WriteMsgUnix fail when connectionless-mode UnixConn is already connected by Mikio Hara · 11 years ago
  32. 7c8280c all: merge NaCl branch (part 1) by Dave Cheney · 11 years ago
  33. 50df136 runtime, net: add support for GOOS=solaris by Aram Hăvărneanu · 11 years ago
  34. 731e6f7 net: fix incoming connection's network name handling on unix networks by Mikio Hara · 11 years ago
  35. 2be6236 net: fix Close of autobind unix listener by Albert Strasheim · 11 years ago
  36. a3834a2 net: Fix inaccurate docs for AcceptTCP and AcceptUnix. by Kamil Kisiel · 11 years ago
  37. 3c6558a net: add netaddr interface by Mikio Hara · 11 years ago
  38. e4bb139 net: make protocol-specific Dial and Listen return consistent error value by Mikio Hara · 11 years ago
  39. fce0608 net: dragonfly support by Joel Sing · 11 years ago
  40. 3b961bf net: remove redundant argument check from Dial on udp, unix networks by Mikio Hara · 11 years ago
  41. 7917b88 net: make protocol-specific WriteTo, WriteMsg methods return error instead of crash by Mikio Hara · 11 years ago
  42. 5d5defc net: rearrange the call order of runtime-integrated network pollster and syscall functions by Mikio Hara · 11 years ago
  43. 39a7017 net: make deadline helpers join to netFD as its methods by Mikio Hara · 11 years ago
  44. 8a7def2 net: reduce unnecessary syscall.Sockaddr conversions by Mikio Hara · 11 years ago
  45. 3398322 net: remove redundant comment on isWildcard by Mikio Hara · 11 years ago
  46. a64bea5 net: make UnixAddr implement sockaddr interface by Mikio Hara · 11 years ago
  47. 73417e4 net: add missing File method document by Mikio Hara · 12 years ago
  48. e13341e net: fix possible runtime.PollDesc leak when connect or listen fails by Mikio Hara · 12 years ago
  49. 8a448ef net: update documentation for UnixConn, UnixListener and related stuff by Mikio Hara · 12 years ago
  50. bfb32dc net: use original raddr if getpeername fails by Mikio Hara · 12 years ago
  51. f6d0ade build: remove dead code by Russ Cox · 12 years ago
  52. a0430da net: fix unixgram by Mikio Hara · 12 years ago
  53. 6563d86 syscall: handle empty address in ReadFrom better by Jeff R. Allen · 12 years ago
  54. 0d19725 net: change ListenUnixgram signature to return UnixConn instead of UDPConn by Mikio Hara · 12 years ago
  55. 0bfece0 net: remove unused nil check by Dave Cheney · 12 years ago
  56. ef6806f net: close fds eagerly in DialTimeout by Brad Fitzpatrick · 12 years ago
  57. 0ce9045 net: add CloseRead, CloseWrite methods to UnixConn. by Rémy Oudompheng · 13 years ago
  58. f72c828 net: consolidate common socket functions by Dave Cheney · 13 years ago
  59. d1ab10b net: fix typo in Listener.File() documentation by Rémy Oudompheng · 13 years ago
  60. 1f14d45 net: fix race between Close and Read by Dave Cheney · 13 years ago
  61. e38c5fb net: document ReadMsgUnix, WriteMsgUnix by Russ Cox · 13 years ago
  62. b5dc872 net: make Dial and Listen behavior consistent across over platforms by Mikio Hara · 13 years ago
  63. 215777b net: replace error variable name oserr with err by Mikio Hara · 13 years ago
  64. 56069f0 os: delete os.EINVAL and so on by Rob Pike · 13 years ago
  65. 28397be net: replace error variable name e, errno with err by Mikio Hara · 13 years ago
  66. 3d400db net: update comments to remove redundant "net" prefix by Mikio Hara · 13 years ago
  67. 77cb895 net: consistent OpError message by Mikio Hara · 13 years ago
  68. 743c2d0 net: fix broken setDefaultSockopts by Mikio Hara · 13 years ago
  69. b58b5ba net: fix plan9 build by Mikio Hara · 13 years ago
  70. b71883e net: change SetTimeout to SetDeadline by Brad Fitzpatrick · 13 years ago
  71. d3c59f6 net: make use of the kernel state to listen on TCP, Unix by Mikio Hara · 13 years ago
  72. 9ca57a7 crypto/mime/net/time: add netbsd to +build tags by Joel Sing · 13 years ago
  73. c017a82 syscall: use error by Russ Cox · 13 years ago
  74. eb69292 src/pkg/[n-z]*: gofix -r error -force=error by Russ Cox · 13 years ago
  75. 2715956 build: add build comments to core packages by Russ Cox · 13 years ago
  76. 0f7bc92 net: Plan 9 support by Fazlul Shahriar · 13 years ago