summaryrefslogtreecommitdiff
path: root/src/lib/net/net.go
AgeCommit message (Collapse)AuthorFilesLines
2009-01-06new new & makeRuss Cox1-3/+3
R=r OCL=22166 CL=22166
2008-12-19allow Listen on ":9999" as an alias for "0.0.0.0:9999"Russ Cox1-9/+20
R=r DELTA=21 (12 added, 0 deleted, 9 changed) OCL=21653 CL=21653
2008-12-19change *map to map; *chan to chan; new(T) to new(*T)Russ Cox1-16/+14
fix bugs left over from *[] to [] conversion. TBR=r OCL=21576 CL=21581
2008-12-18convert *[] to [].Russ Cox1-25/+25
R=r OCL=21563 CL=21571
2008-12-18host and port name lookupRuss Cox1-40/+31
R=r,presotto DELTA=1239 (935 added, 281 deleted, 23 changed) OCL=21041 CL=21539
2008-12-10assorted cleanup and fixesRuss Cox1-87/+33
R=r DELTA=209 (109 added, 79 deleted, 21 changed) OCL=20930 CL=20934
2008-11-17correctly rounded floating-point conversionsRuss Cox1-3/+3
in new package strconv. move atoi etc to strconv too. update fmt, etc to use strconv. R=r DELTA=2232 (1691 added, 424 deleted, 117 changed) OCL=19286 CL=19380
2008-10-07update code to follow new semicolon rules:Russ Cox1-51/+51
* 1. all statements and declarations are terminated by semicolons * 2. semicolons can be omitted at top level. * 3. semicolons can be omitted before and after the closing ) or } * on a list of statements or declarations. /home/rsc/bin/addsemi and then diff+tweak. R=r,gri OCL=16620 CL=16643
2008-09-30i can import "net" in package netRuss Cox1-18/+18
and still have a variable named "net" R=r DELTA=18 (0 added, 0 deleted, 18 changed) OCL=16220 CL=16222
2008-09-26move src/syscall to src/lib/syscall.Russ Cox1-79/+92
enforce rule: all kernel data structures and constants go in syscall module. move things that should be in syscall out of net. make net a single package. R=r OCL=15985 CL=15994
2008-09-25Change the name of the result variable so that it does notIan Lance Taylor1-1/+1
hide the package "ip". R=rsc DELTA=1 (0 added, 0 deleted, 1 changed) OCL=15914 CL=15914
2008-09-19export an os.Error constructorRuss Cox1-12/+6
R=r DELTA=20 (6 added, 7 deleted, 7 changed) OCL=15569 CL=15571
2008-09-17add network listening & testsRuss Cox1-22/+137
R=r,presotto OCL=15410 CL=15440
2008-09-16preliminary network - just Dial for nowRuss Cox1-0/+483
R=r,presotto OCL=15393 CL=15399