1. 24 Mar, 2013 3 commits
  2. 23 Mar, 2013 6 commits
    • Oling Cat's avatar
      misc/kate: fix multiline raw string syntax highlighting error. · 80234d5c
      Oling Cat authored
      From VisualFC.
      Fixes #4862.
      
      R=golang-dev, minux.ma, r
      CC=golang-dev
      https://golang.org/cl/7568043
      80234d5c
    • Rob Pike's avatar
      doc/go1.1.html: performance · 4c48e4ec
      Rob Pike authored
      An overview is all that's required.
      
      R=golang-dev, remyoudompheng, bradfitz, adg
      CC=golang-dev
      https://golang.org/cl/7577050
      4c48e4ec
    • Mikio Hara's avatar
      net: use original raddr if getpeername fails · bfb32dc6
      Mikio Hara authored
      This CL updates CL 7511043;
      - adds new test cases for both UDPConn and UnixConn,
      - makes sure unnamed UnixAddr handling,
      - replaces t.Errorf with t.Fatalf in sockname related test cases.
      
      Fixes #3721 (again).
      Fixes #3838 (again).
      
      R=golang-dev, rsc
      CC=golang-dev
      https://golang.org/cl/7627048
      bfb32dc6
    • Mikio Hara's avatar
      net: support IPv6 scoped addressing zone · aa0dda76
      Mikio Hara authored
      This CL provides IPv6 scoped addressing zone support as defined
      in RFC 4007 for internet protocol family connection setups.
      
      Follwoing types and functions allow a literal IPv6 address with
      zone identifer as theirs parameter.
      
      pkg net, func Dial(string, string) (Conn, error)
      pkg net, func DialOpt(string, ...DialOption) (Conn, error)
      pkg net, func DialTimeout(string, string, time.Duration) (Conn, error)
      pkg net, func Listen(string, string) (Listener, error)
      pkg net, func ListenPacket(string, string) (PacketConn, error)
      pkg net, func ResolveIPAddr(string, string) (*IPAddr, error)
      pkg net, func ResolveTCPAddr(string, string) (*TCPAddr, error)
      pkg net, func ResolveUDPAddr(string, string) (*UDPAddr, error)
      pkg net, type IPAddr struct, Zone string
      pkg net, type TCPAddr struct, Zone string
      pkg net, type UDPAddr struct, Zone string
      
      Also follwoing methods return a literal IPv6 address with zone
      identifier string if possible.
      
      pkg net, method (*IPAddr) String() string
      pkg net, method (*TCPAddr) String() string
      pkg net, method (*UDPAddr) String() string
      
      Fixes #4234.
      Fixes #4501.
      Update #5081.
      
      R=rsc, iant
      CC=golang-dev
      https://golang.org/cl/6816116
      aa0dda76
    • Ian Lance Taylor's avatar
      runtime: remove declaration of non-existent function · c9085027
      Ian Lance Taylor authored
      R=golang-dev, gri
      CC=golang-dev
      https://golang.org/cl/7577049
      c9085027
    • Ian Lance Taylor's avatar
      runtime: correct misplaced right brace in Linux SIGBUS handling · fb7f217f
      Ian Lance Taylor authored
      I'm not sure how to write a test for this.  The change in
      behaviour is that if you somehow get a SIGBUS signal for an
      address >= 0x1000, the program will now crash rather than
      calling panic.  As far as I know, on x86 GNU/Linux, the only
      way to get a SIGBUS (rather than a SIGSEGV) is to set the
      stack pointer to an invalid value.
      
      R=golang-dev, r
      CC=golang-dev
      https://golang.org/cl/7906045
      fb7f217f
  3. 22 Mar, 2013 27 commits
  4. 21 Mar, 2013 4 commits