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

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

IPv4 and v6 should not need separate handling by a simple client that is just connecting to a host/address. Add IPv6/DNS support in applications where missing.

  • Property mode set to 100644
File size: 4.6 KB
RevLine 
[3495654]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
[1c7ba2da]38#include <stdint.h>
[a2e3ee6]39#include <net/in.h>
[02a09ed]40#include <net/in6.h>
[26de91a]41#include <net/socket.h>
[a2e3ee6]42
[02a09ed]43typedef uint32_t addr32_t;
44typedef uint8_t addr48_t[6];
45typedef uint8_t addr128_t[16];
[1c7ba2da]46
[f023251]47typedef enum {
48 /** Any IP protocol version */
49 ip_any,
50 /** IPv4 */
51 ip_v4,
52 /** IPv6 */
53 ip_v6
54} ip_ver_t;
55
[1c7ba2da]56/** Node address */
57typedef struct {
[f023251]58 /** IP version */
59 ip_ver_t version;
[02a09ed]60 union {
61 addr32_t addr;
62 addr128_t addr6;
63 };
[1c7ba2da]64} inet_addr_t;
65
66/** Network address */
67typedef struct {
[f023251]68 /** IP version */
69 ip_ver_t version;
[a2e3ee6]70
[1c7ba2da]71 /** Address */
[02a09ed]72 union {
73 addr32_t addr;
74 addr128_t addr6;
75 };
[a2e3ee6]76
77 /** Number of valid bits */
78 uint8_t prefix;
[1c7ba2da]79} inet_naddr_t;
[3495654]80
[695b6ff]81extern const addr32_t addr32_broadcast_all_hosts;
[02a09ed]82extern const addr48_t addr48_broadcast;
[a2e3ee6]83
[02a09ed]84extern void addr48(const addr48_t, addr48_t);
85extern void addr128(const addr128_t, addr128_t);
[a2e3ee6]86
[83781a22]87extern int addr48_compare(const addr48_t, const addr48_t);
[671b546]88extern int addr128_compare(const addr128_t, const addr128_t);
89
[83781a22]90extern void addr48_solicited_node(const addr128_t, addr48_t);
91
[02a09ed]92extern void host2addr128_t_be(const addr128_t, addr128_t);
93extern void addr128_t_be2host(const addr128_t, addr128_t);
[a2e3ee6]94
95extern void inet_addr(inet_addr_t *, uint8_t, uint8_t, uint8_t, uint8_t);
96extern void inet_naddr(inet_naddr_t *, uint8_t, uint8_t, uint8_t, uint8_t,
97 uint8_t);
98
[02a09ed]99extern void inet_addr6(inet_addr_t *, uint16_t, uint16_t, uint16_t, uint16_t,
100 uint16_t, uint16_t, uint16_t, uint16_t);
101extern void inet_naddr6(inet_naddr_t *, uint16_t, uint16_t, uint16_t, uint16_t,
102 uint16_t, uint16_t, uint16_t, uint16_t, uint8_t);
103
104extern void inet_naddr_addr(const inet_naddr_t *, inet_addr_t *);
[bb9b0c6]105extern void inet_addr_naddr(const inet_addr_t *, uint8_t, inet_naddr_t *);
[02a09ed]106
[a2e3ee6]107extern void inet_addr_any(inet_addr_t *);
108extern void inet_naddr_any(inet_naddr_t *);
109
[02a09ed]110extern int inet_addr_compare(const inet_addr_t *, const inet_addr_t *);
111extern int inet_addr_is_any(const inet_addr_t *);
112
[30c5d13]113extern int inet_naddr_compare(const inet_naddr_t *, const inet_addr_t *);
[02a09ed]114extern int inet_naddr_compare_mask(const inet_naddr_t *, const inet_addr_t *);
115
116extern int inet_addr_parse(const char *, inet_addr_t *);
117extern int inet_naddr_parse(const char *, inet_naddr_t *);
118
119extern int inet_addr_format(const inet_addr_t *, char **);
120extern int inet_naddr_format(const inet_naddr_t *, char **);
121
[f023251]122extern ip_ver_t inet_addr_get(const inet_addr_t *, addr32_t *, addr128_t *);
123extern ip_ver_t inet_naddr_get(const inet_naddr_t *, addr32_t *, addr128_t *,
[02a09ed]124 uint8_t *);
125
126extern void inet_addr_set(addr32_t, inet_addr_t *);
127extern void inet_naddr_set(addr32_t, uint8_t, inet_naddr_t *);
128extern void inet_sockaddr_in_addr(const sockaddr_in_t *, inet_addr_t *);
129
130extern void inet_addr_set6(addr128_t, inet_addr_t *);
131extern void inet_naddr_set6(addr128_t, uint8_t, inet_naddr_t *);
132extern void inet_sockaddr_in6_addr(const sockaddr_in6_t *, inet_addr_t *);
133
134extern uint16_t inet_addr_sockaddr_in(const inet_addr_t *, sockaddr_in_t *,
135 sockaddr_in6_t *);
[3495654]136
[e948fde]137extern ip_ver_t ipver_from_af(int af);
[26de91a]138extern int inet_addr_sockaddr(const inet_addr_t *, uint16_t, sockaddr_t **,
139 socklen_t *);
[e948fde]140
[3495654]141#endif
142
143/** @}
144 */
Note: See TracBrowser for help on using the repository browser.