aboutsummaryrefslogtreecommitdiff
path: root/src/lib/net/net.go
AgeCommit message (Expand)Author
2009-06-09mv src/lib to src/pkgRob Pike
2009-06-01update Go tree to use new syscall package.Russ Cox
2009-05-13Unix domain socket support, Linux and Darwin.Russ Cox
2009-05-08throw away os._Error.Russ Cox
2009-05-07another attempt at avoiding IPv6 when it's not supported.Russ Cox
2009-05-07next step for 6.out on Borg: fix and testRuss Cox
2009-04-30auto-detect whether to use IPv6 or IPv4 kernel interfaceRuss Cox
2009-04-17Step 1 of the Big Error Shift: make os.Error an interface and replace *os.Err...Rob Pike
2009-04-16Convert go tree to hierarchical pkg directory:Russ Cox
2009-03-11Rename os.FD to os.File.Russ Cox
2009-03-06document Conn interface better, in preparationRuss Cox
2009-03-05net: doc, doc-inspired cleanupRuss Cox
2009-02-15add os.ForkExec, os.Exec, os.Wait, exec.OpenCmd.Russ Cox
2009-02-15cleanups:Russ Cox
2009-01-30update go code tree to new func rules.Russ Cox
2009-01-20delete exportRuss Cox
2009-01-16casify syscall and sequelaeRob Pike
2009-01-16casify DNSRuss Cox
2009-01-15convert strconvRuss Cox
2009-01-06new new & makeRuss Cox
2008-12-19allow Listen on ":9999" as an alias for "0.0.0.0:9999"Russ Cox
2008-12-19change *map to map; *chan to chan; new(T) to new(*T)Russ Cox
2008-12-18convert *[] to [].Russ Cox
2008-12-18host and port name lookupRuss Cox
2008-12-10assorted cleanup and fixesRuss Cox
2008-11-17correctly rounded floating-point conversionsRuss Cox
2008-10-07update code to follow new semicolon rules:Russ Cox
2008-09-30i can import "net" in package netRuss Cox
2008-09-26move src/syscall to src/lib/syscall.Russ Cox
2008-09-25Change the name of the result variable so that it does notIan Lance Taylor
2008-09-19export an os.Error constructorRuss Cox
2008-09-17add network listening & testsRuss Cox
2008-09-16preliminary network - just Dial for nowRuss Cox