chiark / gitweb /
implement hashmap_replace() and hashmap_remove_value()
[elogind.git] / socket-util.h
1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3 #ifndef foosocketutilhfoo
4 #define foosocketutilhfoo
5
6 #include <sys/socket.h>
7 #include <netinet/in.h>
8 #include <sys/un.h>
9
10 #include "macro.h"
11 #include "util.h"
12
13 typedef struct Address {
14         union {
15                 struct sockaddr sa;
16                 struct sockaddr_in in4;
17                 struct sockaddr_in6 in6;
18                 struct sockaddr_un un;
19                 struct sockaddr_storage storage;
20         } sockaddr;
21
22         /* We store the size here explicitly due to the weird
23          * sockaddr_un semantics for abstract sockets */
24         socklen_t size;
25
26         /* Socket type, i.e. SOCK_STREAM, SOCK_DGRAM, ... */
27         int type;
28
29         /* Only for INET6 sockets: issue IPV6_V6ONLY sockopt */
30         bool bind_ipv6_only;
31 } Address;
32
33 #define address_family(a) ((a)->sockaddr.sa.sa_family)
34
35 int address_parse(Address *a, const char *s);
36 int address_print(const Address *a, char **p);
37 int address_verify(const Address *a);
38 int address_listen(const Address *a, int backlog);
39
40 #endif