source: mainline/uspace/lib/c/include/inet/addr.h@ e948fde

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since e948fde was e948fde, checked in by Jiri Svoboda <jiri@…>, 12 years ago

dnsr_name2host should use ip_ver_t instead of AF.

  • Property mode set to 100644
File size: 4.4 KB
Line 
1/*
2 * Copyright (c) 2013 Jiri Svoboda
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup libc
30 * @{
31 */
32/** @file
33 */
34
35#ifndef LIBC_INET_ADDR_H_
36#define LIBC_INET_ADDR_H_
37
38#include <stdint.h>
39#include <net/in.h>
40#include <net/in6.h>
41
42typedef uint32_t addr32_t;
43typedef uint8_t addr48_t[6];
44typedef uint8_t addr128_t[16];
45
46typedef enum {
47 /** Any IP protocol version */
48 ip_any,
49 /** IPv4 */
50 ip_v4,
51 /** IPv6 */
52 ip_v6
53} ip_ver_t;
54
55/** Node address */
56typedef struct {
57 /** IP version */
58 ip_ver_t version;
59 union {
60 addr32_t addr;
61 addr128_t addr6;
62 };
63} inet_addr_t;
64
65/** Network address */
66typedef struct {
67 /** IP version */
68 ip_ver_t version;
69
70 /** Address */
71 union {
72 addr32_t addr;
73 addr128_t addr6;
74 };
75
76 /** Number of valid bits */
77 uint8_t prefix;
78} inet_naddr_t;
79
80extern const addr32_t addr32_broadcast_all_hosts;
81extern const addr48_t addr48_broadcast;
82
83extern void addr48(const addr48_t, addr48_t);
84extern void addr128(const addr128_t, addr128_t);
85
86extern int addr48_compare(const addr48_t, const addr48_t);
87extern int addr128_compare(const addr128_t, const addr128_t);
88
89extern void addr48_solicited_node(const addr128_t, addr48_t);
90
91extern void host2addr128_t_be(const addr128_t, addr128_t);
92extern void addr128_t_be2host(const addr128_t, addr128_t);
93
94extern void inet_addr(inet_addr_t *, uint8_t, uint8_t, uint8_t, uint8_t);
95extern void inet_naddr(inet_naddr_t *, uint8_t, uint8_t, uint8_t, uint8_t,
96 uint8_t);
97
98extern void inet_addr6(inet_addr_t *, uint16_t, uint16_t, uint16_t, uint16_t,
99 uint16_t, uint16_t, uint16_t, uint16_t);
100extern void inet_naddr6(inet_naddr_t *, uint16_t, uint16_t, uint16_t, uint16_t,
101 uint16_t, uint16_t, uint16_t, uint16_t, uint8_t);
102
103extern void inet_naddr_addr(const inet_naddr_t *, inet_addr_t *);
104extern void inet_addr_naddr(const inet_addr_t *, uint8_t, inet_naddr_t *);
105
106extern void inet_addr_any(inet_addr_t *);
107extern void inet_naddr_any(inet_naddr_t *);
108
109extern int inet_addr_compare(const inet_addr_t *, const inet_addr_t *);
110extern int inet_addr_is_any(const inet_addr_t *);
111
112extern int inet_naddr_compare(const inet_naddr_t *, const inet_addr_t *);
113extern int inet_naddr_compare_mask(const inet_naddr_t *, const inet_addr_t *);
114
115extern int inet_addr_parse(const char *, inet_addr_t *);
116extern int inet_naddr_parse(const char *, inet_naddr_t *);
117
118extern int inet_addr_format(const inet_addr_t *, char **);
119extern int inet_naddr_format(const inet_naddr_t *, char **);
120
121extern ip_ver_t inet_addr_get(const inet_addr_t *, addr32_t *, addr128_t *);
122extern ip_ver_t inet_naddr_get(const inet_naddr_t *, addr32_t *, addr128_t *,
123 uint8_t *);
124
125extern void inet_addr_set(addr32_t, inet_addr_t *);
126extern void inet_naddr_set(addr32_t, uint8_t, inet_naddr_t *);
127extern void inet_sockaddr_in_addr(const sockaddr_in_t *, inet_addr_t *);
128
129extern void inet_addr_set6(addr128_t, inet_addr_t *);
130extern void inet_naddr_set6(addr128_t, uint8_t, inet_naddr_t *);
131extern void inet_sockaddr_in6_addr(const sockaddr_in6_t *, inet_addr_t *);
132
133extern uint16_t inet_addr_sockaddr_in(const inet_addr_t *, sockaddr_in_t *,
134 sockaddr_in6_t *);
135
136extern ip_ver_t ipver_from_af(int af);
137
138#endif
139
140/** @}
141 */
Note: See TracBrowser for help on using the repository browser.