summaryrefslogtreecommitdiff
path: root/src/pkg/net
AgeCommit message (Expand)AuthorFilesLines
2011-06-30Imported Upstream version 58upstream/58Ondřej Surý31-236/+1493
2011-04-28Imported Upstream version 2011.04.27upstream/2011.04.27Ondřej Surý23-53/+342
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý36-329/+1027
2011-04-20Imported Upstream version 2011.03.07.1upstream/2011.03.07.1Ondřej Surý12-393/+509
2011-02-18Imported Upstream version 2011.02.15upstream/2011.02.15Ondřej Surý1-2/+2
2011-02-14Imported Upstream version 2011-02-01.1upstream/2011-02-01.1Ondřej Surý13-96/+411
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý38-184/+1940
2010-06-29net: initial attempt to implement windows versionAlex Brainman2-2/+386
2010-06-30 net: add support for DNS SRV requests.Kirklin McDonald2-23/+82
2010-06-29Move the function Run() back into fd.go.Vinu Rajashekhar2-46/+44
2010-06-28Move the functions, newPollServer and Run, from fd.goVinu Rajashekhar3-75/+88
2010-06-21net: move Dial, Listen out of net.go.Russ Cox3-172/+180
2010-06-21net: Fix ICMP test.Christopher Wedgwood1-2/+2
2010-06-20reflect: add Kind, remove Int8Type, Int8Value, etc.Russ Cox1-30/+41
2010-06-08misc cleanup: gofmt + &x -> x[0:] conversionRuss Cox3-10/+10
2010-05-31net: fix typoAndrew Gerrand1-1/+1
2010-05-27changes &x -> x[0:] for array to slice conversionRuss Cox7-17/+17
2010-05-24net: udp, implement BindToDeviceChristopher Wedgwood1-0/+10
2010-05-21go/printer, gofmt: fix printing of labels,Robert Griesemer1-1/+2
2010-05-21net: implement raw socketsChristopher Wedgwood8-10/+519
2010-05-20netFD: fix race between Close and Read/WriteMichael Hoisie1-2/+9
2010-05-05Fix a typo in net/unixsockConrad Meyer1-1/+1
2010-04-29net: use short variable declarationChristopher Wedgwood1-2/+1
2010-04-29net: parser should handle EOF without newline properly.Christopher Wedgwood1-10/+14
2010-04-28net: do not require newline at end of resolv.confRuss Cox1-0/+5
2010-04-27net: drop non-RHEL-4.6 ports from testRuss Cox1-2/+0
2010-04-27net: fix bug in internetSocket introduced by error cleanup.Russ Cox1-1/+1
2010-04-26net: introduce net.Error interfaceRuss Cox11-317/+339
2010-04-26net: add PipeRuss Cox3-0/+120
2010-04-18net: fix bugs in packStructValueMichael Hoisie1-4/+4
2010-04-06net: use chan bool instead of chan *netFD to avoid cycleRuss Cox1-8/+8
2010-03-30simplify various code using new map index ruleRuss Cox1-2/+1
2010-03-30single argument panicRuss Cox2-7/+3
2010-03-24delete all uses of panicln by rewriting them using panic or,Rob Pike1-1/+1
2010-03-16net: fix IPMask.String not to crash on all-0xff maskRuss Cox1-21/+38
2010-03-03net: put [ ] around IPv6 addresses for DialRuss Cox1-1/+5
2010-03-03net: fix nil deref in testTimeout when Dial failsRuss Cox1-1/+2
2010-03-03net: fix network timeout boundary condition.Stephen Ma1-1/+1
2010-03-03net: correct DNS configurationStephen Ma2-3/+3
2010-03-02gofmt: experiment: align values in map composites where possibleRobert Griesemer2-14/+14
2010-02-25strings: delete Runes, BytesRuss Cox2-3/+2
2010-02-25Fix small typo in net package.Stephen Weinberg1-1/+1
2010-02-22net: disable UDP server testRuss Cox1-3/+6
2010-02-10net: use slightly less predictable dns request idRuss Cox1-1/+3
2010-01-26net: fix segfault if /etc/hosts fails to open or doesn't existMichael Hoisie1-1/+3
2010-01-25net: parse aliases in /etc/hosts correctlyAndrey Mirtchovski3-3/+13
2010-01-18net: enable UDP broadcast before it is needed (instead of after)Russ Cox2-5/+4
2010-01-15Use /etc/hosts when resolving names.Yves Junqueira6-2/+148
2010-01-05net: make Dial correctly return nil on error.Roger Peppe1-3/+15
2009-12-151) Change default gofmt default settings forRobert Griesemer24-1249/+1249