mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-27 06:44:07 -06:00
22 lines
385 B
Go
22 lines
385 B
Go
// Copyright 2014 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.
|
|
|
|
//go:build ignore
|
|
// +build ignore
|
|
|
|
// +godefs map struct_in_addr [4]byte /* in_addr */
|
|
|
|
package ipv4
|
|
|
|
/*
|
|
#include <netinet/in.h>
|
|
*/
|
|
import "C"
|
|
|
|
const (
|
|
sizeofIPMreq = C.sizeof_struct_ip_mreq
|
|
)
|
|
|
|
type ipMreq C.struct_ip_mreq
|