From: Andrew Gerrand Date: Thu, 20 Jan 2011 01:41:59 +0000 (+1100) Subject: syscall: attempt to fix windows build, supply missing constant X-Git-Tag: weekly.2011-01-19~2 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=0b08119adc2f6d59d1f0f8022fdb8398c19c708c;p=gostls13.git syscall: attempt to fix windows build, supply missing constant R=r, brainman, rsc1 CC=golang-dev https://golang.org/cl/4023043 --- diff --git a/src/pkg/syscall/ztypes_windows_386.go b/src/pkg/syscall/ztypes_windows_386.go index e67165f232..b1271aff17 100644 --- a/src/pkg/syscall/ztypes_windows_386.go +++ b/src/pkg/syscall/ztypes_windows_386.go @@ -295,9 +295,10 @@ const ( AF_INET6 = 23 AF_NETBIOS = 17 - SOCK_STREAM = 1 - SOCK_DGRAM = 2 - SOCK_RAW = 3 + SOCK_STREAM = 1 + SOCK_DGRAM = 2 + SOCK_RAW = 3 + SOCK_SEQPACKET = 5 IPPROTO_IP = 0 IPPROTO_TCP = 6