libc_extra/android_linux/net/if_/
mod.rs

1// This file is part of libc-extra. It is subject to the license terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/libc-extra/master/COPYRIGHT. No part of libc-extra, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file.
2// Copyright © 2016-2018 The developers of libc-extra. See the COPYRIGHT file in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/libc-extra/master/COPYRIGHT.
3
4
5#![allow(non_camel_case_types)] 
6
7use ::std::default::Default;
8use ::std::mem::transmute;
9use ::std::mem::zeroed;
10use ::libc::c_char;
11use ::libc::c_int;
12use ::libc::c_short;
13use ::libc::c_uchar;
14use ::libc::c_ulong;
15use ::libc::c_ushort;
16use ::libc::c_void;
17use ::libc::IF_NAMESIZE;
18use ::libc::sockaddr;
19use ::libc::socklen_t;
20
21
22include!("cmsghdr.rs");
23include!("functions.rs");
24include!("iface.rs");
25include!("ifaddr.rs");
26include!("ifconf.rs");
27include!("ifmap.rs");
28include!("ifreq.rs");