summaryrefslogtreecommitdiff
path: root/src/lib/net/dnsclient.go
AgeCommit message (Collapse)AuthorFilesLines
2009-03-06document Conn interface better, in preparationRuss Cox1-5/+6
for per-method interface documentation by mkdoc.pl. implement timeouts on network reads and use them in dns client. also added locks on i/o to ensure writes are not interlaced. R=r DELTA=340 (272 added, 25 deleted, 43 changed) OCL=25799 CL=25874
2009-03-05net: doc, doc-inspired cleanupRuss Cox1-19/+26
R=r DELTA=368 (87 added, 14 deleted, 267 changed) OCL=25773 CL=25786
2009-03-03Automated g4 rollback of changelist 25024,Russ Cox1-3/+3
plus significant hand editing. Back to T{x} for composite literals. R=r OCL=25612 CL=25632
2009-02-15cleanups:Russ Cox1-8/+8
get rid of _ on private names in net. fix os_test file name list. newline not needed on Errorf. R=r DELTA=305 (34 added, 2 deleted, 269 changed) OCL=25047 CL=25047
2009-02-13convert composite literals from { } to ( ).Russ Cox1-3/+3
only non-trivial changes are in convlit1.go golden.out R=gri OCL=25019 CL=25024
2009-01-30update go code tree to new func rules.Russ Cox1-1/+1
R=r DELTA=367 (111 added, 59 deleted, 197 changed) OCL=23957 CL=23960
2009-01-20delete exportRuss Cox1-2/+2
TBR=r OCL=23121 CL=23127
2009-01-16casify miscRuss Cox1-1/+1
R=r DELTA=247 (20 added, 50 deleted, 177 changed) OCL=22951 CL=22955
2009-01-16casify DNSRuss Cox1-12/+12
R=r DELTA=221 (0 added, 0 deleted, 221 changed) OCL=22946 CL=22948
2009-01-15printf->Printf etc.Rob Pike1-1/+1
the raw fmt routines will be another, smaller but subtler pass. R=rsc DELTA=157 (0 added, 0 deleted, 157 changed) OCL=22851 CL=22851
2009-01-06new new & makeRuss Cox1-4/+4
R=r OCL=22166 CL=22166
2008-12-19change *map to map; *chan to chan; new(T) to new(*T)Russ Cox1-9/+7
fix bugs left over from *[] to [] conversion. TBR=r OCL=21576 CL=21581
2008-12-18convert *[] to [].Russ Cox1-9/+12
R=r OCL=21563 CL=21571
2008-12-18host and port name lookupRuss Cox1-0/+215
R=r,presotto DELTA=1239 (935 added, 281 deleted, 23 changed) OCL=21041 CL=21539