Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(1108)

Delta Between Two Patch Sets: ipv4/sockopt_freebsd.go

Issue 6482044: code review 6482044: go.net/ipv4: new package (Closed)
Left Patch Set: diff -r 147c4a6dca9b https://code.google.com/p/go.net Created 11 years, 7 months ago
Right Patch Set: diff -r 2513e9008213 https://code.google.com/p/go.net Created 11 years, 6 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « ipv4/sockopt_bsd.go ('k') | ipv4/sockopt_linux.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 // Copyright 2012 The Go Authors. All rights reserved. 1 // Copyright 2012 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 package ipv4 5 package ipv4
6 6
7 import ( 7 import (
8 "os" 8 "os"
9 "syscall" 9 "syscall"
10 ) 10 )
11 11
12 func ipv4SendSourceAddress(f *os.File) (bool, error) { 12 func ipv4SendSourceAddress(fd int) (bool, error) {
13 » v, err := syscall.GetsockoptInt(int(f.Fd()), syscall.IPPROTO_IP, syscall .IP_SENDSRCADDR) 13 » v, err := syscall.GetsockoptInt(fd, syscall.IPPROTO_IP, syscall.IP_SENDS RCADDR)
14 if err != nil { 14 if err != nil {
15 return false, os.NewSyscallError("getsockopt", err) 15 return false, os.NewSyscallError("getsockopt", err)
16 } 16 }
17 return v == 1, nil 17 return v == 1, nil
18 } 18 }
19 19
20 func setIPv4SendSourceAddress(f *os.File, v bool) error { 20 func setIPv4SendSourceAddress(fd int, v bool) error {
21 » err := syscall.SetsockoptInt(int(f.Fd()), syscall.IPPROTO_IP, syscall.IP _SENDSRCADDR, boolint(v)) 21 » err := syscall.SetsockoptInt(fd, syscall.IPPROTO_IP, syscall.IP_SENDSRCA DDR, boolint(v))
22 if err != nil { 22 if err != nil {
23 return os.NewSyscallError("setsockopt", err) 23 return os.NewSyscallError("setsockopt", err)
24 } 24 }
25 return nil 25 return nil
26 } 26 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b