summaryrefslogtreecommitdiff
path: root/src/lib/net/net.go
AgeCommit message (Expand)AuthorFilesLines
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