1. 22 Feb, 2011 2 commits
  2. 21 Feb, 2011 5 commits
  3. 20 Feb, 2011 1 commit
  4. 19 Feb, 2011 2 commits
  5. 18 Feb, 2011 13 commits
  6. 17 Feb, 2011 14 commits
  7. 16 Feb, 2011 3 commits
    • Nigel Tao's avatar
      html: tokenize HTML comments. · a5ff8ad9
      Nigel Tao authored
      I'm not sure if it's 100% correct wrt the HTML5 specification,
      but the test suite has plenty of HTML comment test cases, and
      we'll shake out any tokenization bugs as the parser improves its
      coverage.
      
      R=gri
      CC=golang-dev
      https://golang.org/cl/4186055
      a5ff8ad9
    • Jeff R. Allen's avatar
      gc: make string const comparison unsigned · 3a2d6478
      Jeff R. Allen authored
      Make compile-time string const comparison match semantics
      of runtime.cmpstring.
      
      Fixes #1515.
      
      R=rsc
      CC=golang-dev, rog
      https://golang.org/cl/4172049
      3a2d6478
    • Dave Cheney's avatar
      net: add IPv4 multicast to UDPConn · 0856731d
      Dave Cheney authored
      notes:
      Darwin is very particular about joining a multicast group if the
      listneing socket is not created in "udp4" mode, the other supported
      OS's are more flexible.
      
      A simple example sets up a socket to listen on the mdns/bonjour
      group 224.0.0.251:5353
      
      // ensure the sock is udp4, and the IP is a 4 byte IPv4
      socket, err := net.ListenUDP("udp4", &net.UDPAddr {
              IP: net.IPv4zero,
              // currently darwin will not allow you to bind to
              // a port if it is already bound to another process
              Port: 5353,
      })
      if err != nil {
              log.Exitf("listen %s", err)
      }
      defer socket.Close()
      err = socket.JoinGroup(net.IPv4(224, 0, 0, 251))
      if err != nil {
              log.Exitf("join group %s", err)
      }
      
      R=adg, rsc
      CC=golang-dev
      https://golang.org/cl/4066044
      0856731d