1. 02 Nov, 2011 1 commit
  2. 18 Oct, 2011 1 commit
  3. 30 Jun, 2011 1 commit
  4. 16 May, 2011 1 commit
  5. 20 Apr, 2011 1 commit
    • Russ Cox's avatar
      net: use C library resolver on FreeBSD, Linux, OS X / amd64, 386 · c9164a5d
      Russ Cox authored
      This CL makes it possible to resolve DNS names on OS X
      without offending the Application-Level Firewall.
      
      It also means that cross-compiling from one operating
      system to another is no longer possible when using
      package net, because cgo needs to be able to sniff around
      the local C libraries.  We could special-case this one use
      and check in generated files, but it seems more trouble
      than it's worth.  Cross compiling is dead anyway.
      
      It is still possible to use either GOARCH=amd64 or GOARCH=386
      on typical Linux and OS X x86 systems.
      
      It is also still possible to build GOOS=linux GOARCH=arm on
      any system, because arm is for now excluded from this change
      (there is no cgo for arm yet).
      
      R=iant, r, mikioh
      CC=golang-dev
      https://golang.org/cl/4437053
      c9164a5d
  6. 29 Mar, 2011 1 commit
    • Russ Cox's avatar
      net: drop laddr from Dial, cname from LookupHost; new functions · 41f93a43
      Russ Cox authored
      Drop laddr argument from Dial.
      
      Drop cname return from LookupHost.
      
      Add LookupIP, LookupCNAME, ParseCIDR, IP.Equal.
      Export SplitHostPort, JoinHostPort.
      Add AAAA (IPv6) support to host lookups.
      
      Preparations for implementing some of the
      lookups using cgo.
      
      ParseCIDR and IP.Equal are logically new in this CL
      but accidentally snuck into an earlier CL about unused
      labels that was in the same client.
      
      In crypto/tls, drop laddr from Dial to match net.
      
      R=golang-dev, dsymonds, adg, rh
      CC=golang-dev
      https://golang.org/cl/4244055
      41f93a43
  7. 16 Feb, 2011 1 commit
  8. 19 Jan, 2011 1 commit
  9. 21 Oct, 2010 1 commit
  10. 22 Jun, 2010 1 commit