1// 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
5//go:build ignore
6// +build ignore
7
8// +godefs map struct_in_addr [4]byte /* in_addr */
9
10package ipv4
11
12/*
13#include <netinet/in.h>
14*/
15import "C"
16
17const (
18	sizeofIPMreq = C.sizeof_struct_ip_mreq
19)
20
21type ipMreq C.struct_ip_mreq
22