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