blob: 43e9f67bb7fe408091eba2cb2bd05a7e8db93fa7 [file] [log] [blame]
Mikio Harab1072ec2014-09-18 20:22:18 +09001// Copyright 2014 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Russ Cox5f55cee2021-02-19 18:54:43 -05005//go:build ignore
Mikio Harab1072ec2014-09-18 20:22:18 +09006
7// +godefs map struct_in_addr [4]byte /* in_addr */
8
9package ipv4
10
11/*
12#include <netinet/in.h>
13*/
14import "C"
15
16const (
Mikio Haraa14f4292016-10-07 12:20:41 +090017 sizeofIPMreq = C.sizeof_struct_ip_mreq
Mikio Harab1072ec2014-09-18 20:22:18 +090018)
19
Mikio Haraa14f4292016-10-07 12:20:41 +090020type ipMreq C.struct_ip_mreq