Fixed ZDE build - missing header file
[ZeXOS.git] / libc / include / netinet / in.h
blob133826f26b20850850707a019a0e6a07f65e8bf7
1 /*
2 * ZeX/OS
3 * Copyright (C) 2009 Tomas 'ZeXx86' Jedrzejek (zexx86@zexos.org)
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #ifndef _IN_H
20 #define _IN_H
22 typedef unsigned short in_port_t;
23 typedef unsigned in_addr_t;
25 struct in_addr
27 unsigned s_addr; /* IPv4 address */
30 struct in6_addr
32 unsigned short s6_addr[8]; /* IPv6 address */
35 struct sockaddr_in {
36 int sin_family;
37 unsigned short sin_port;
38 struct in_addr sin_addr;
39 unsigned char sin_zero[8];
42 struct sockaddr_in6 {
43 unsigned char sin6_len; /* length of this structure */
44 unsigned char sin6_family; /* AF_INET6 */
45 unsigned short sin6_port; /* Transport layer port # */
46 unsigned sin6_flowinfo; /* IPv6 flow information */
47 struct in6_addr sin6_addr; /* IPv6 address */
50 #endif