File: sockcmsg_dragonfly.go

package info (click to toggle)
icingadb 1.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 45,716 kB
  • sloc: ansic: 169,210; asm: 7,097; sql: 4,098; sh: 1,415; cpp: 1,132; makefile: 418; xml: 160
file content (16 lines) | stat: -rw-r--r-- 544 bytes parent folder | download | duplicates (41)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2019 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package unix

// Round the length of a raw sockaddr up to align it properly.
func cmsgAlignOf(salen int) int {
	salign := SizeofPtr
	if SizeofPtr == 8 && !supportsABI(_dragonflyABIChangeVersion) {
		// 64-bit Dragonfly before the September 2019 ABI changes still requires
		// 32-bit aligned access to network subsystem.
		salign = 4
	}
	return (salen + salign - 1) & ^(salign - 1)
}