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