aboutsummaryrefslogtreecommitdiff
path: root/include/net
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--include/net/if.h3
-rw-r--r--include/netdb.h15
-rw-r--r--include/netinet/in.h30
-rw-r--r--include/netinet/tcp.h6
4 files changed, 18 insertions, 36 deletions
diff --git a/include/net/if.h b/include/net/if.h
index 3f4fc092..1a4059d6 100644
--- a/include/net/if.h
+++ b/include/net/if.h
@@ -9,8 +9,7 @@ extern "C" {
#define IF_NAMESIZE 16
-struct if_nameindex
-{
+struct if_nameindex {
unsigned int if_index;
char *if_name;
};
diff --git a/include/netdb.h b/include/netdb.h
index 47940684..967ca211 100644
--- a/include/netdb.h
+++ b/include/netdb.h
@@ -13,8 +13,7 @@ extern "C" {
#include <bits/alltypes.h>
#endif
-struct addrinfo
-{
+struct addrinfo {
int ai_flags;
int ai_family;
int ai_socktype;
@@ -62,16 +61,14 @@ const char *gai_strerror(int);
/* Legacy functions follow (marked OBsolete in SUS) */
-struct netent
-{
+struct netent {
char *n_name;
char **n_aliases;
int n_addrtype;
uint32_t n_net;
};
-struct hostent
-{
+struct hostent {
char *h_name;
char **h_aliases;
int h_addrtype;
@@ -80,16 +77,14 @@ struct hostent
};
#define h_addr h_addr_list[0]
-struct servent
-{
+struct servent {
char *s_name;
char **s_aliases;
int s_port;
char *s_proto;
};
-struct protoent
-{
+struct protoent {
char *p_name;
char **p_aliases;
int p_proto;
diff --git a/include/netinet/in.h b/include/netinet/in.h
index 04cc81cd..f6bb77b1 100644
--- a/include/netinet/in.h
+++ b/include/netinet/in.h
@@ -13,16 +13,14 @@ typedef uint16_t in_port_t;
typedef uint32_t in_addr_t;
struct in_addr { in_addr_t s_addr; };
-struct sockaddr_in
-{
+struct sockaddr_in {
sa_family_t sin_family;
in_port_t sin_port;
struct in_addr sin_addr;
uint8_t sin_zero[8];
};
-struct in6_addr
-{
+struct in6_addr {
union {
uint8_t __s6_addr[16];
uint16_t __s6_addr16[8];
@@ -33,8 +31,7 @@ struct in6_addr
#define s6_addr16 __in6_union.__s6_addr16
#define s6_addr32 __in6_union.__s6_addr32
-struct sockaddr_in6
-{
+struct sockaddr_in6 {
sa_family_t sin6_family;
in_port_t sin6_port;
uint32_t sin6_flowinfo;
@@ -42,8 +39,7 @@ struct sockaddr_in6
uint32_t sin6_scope_id;
};
-struct ipv6_mreq
-{
+struct ipv6_mreq {
struct in6_addr ipv6mr_multiaddr;
unsigned ipv6mr_interface;
};
@@ -228,8 +224,7 @@ uint16_t ntohs(uint16_t);
#define IP_DEFAULT_MULTICAST_LOOP 1
#define IP_MAX_MEMBERSHIPS 20
-struct ip_opts
-{
+struct ip_opts {
struct in_addr ip_dst;
char ip_opts[40];
};
@@ -247,14 +242,12 @@ struct ip_opts
#define MCAST_EXCLUDE 0
#define MCAST_INCLUDE 1
-struct ip_mreq
-{
+struct ip_mreq {
struct in_addr imr_multiaddr;
struct in_addr imr_interface;
};
-struct ip_mreqn
-{
+struct ip_mreqn {
struct in_addr imr_multiaddr;
struct in_addr imr_address;
int imr_ifindex;
@@ -299,21 +292,18 @@ struct group_filter {
(sizeof(struct group_filter) - sizeof(struct sockaddr_storage) \
+ (numsrc) * sizeof(struct sockaddr_storage))
-struct in_pktinfo
-{
+struct in_pktinfo {
int ipi_ifindex;
struct in_addr ipi_spec_dst;
struct in_addr ipi_addr;
};
-struct in6_pktinfo
-{
+struct in6_pktinfo {
struct in6_addr ipi6_addr;
unsigned ipi6_ifindex;
};
-struct ip6_mtuinfo
-{
+struct ip6_mtuinfo {
struct sockaddr_in6 ip6m_addr;
uint32_t ip6m_mtu;
};
diff --git a/include/netinet/tcp.h b/include/netinet/tcp.h
index d6f41cab..9ea64c45 100644
--- a/include/netinet/tcp.h
+++ b/include/netinet/tcp.h
@@ -145,8 +145,7 @@ struct tcphdr {
#define TCP_CA_Recovery 3
#define TCP_CA_Loss 4
-struct tcp_info
-{
+struct tcp_info {
uint8_t tcpi_state;
uint8_t tcpi_ca_state;
uint8_t tcpi_retransmits;
@@ -192,8 +191,7 @@ struct tcp_info
#define TCP_MD5SIG_MAXKEYLEN 80
-struct tcp_md5sig
-{
+struct tcp_md5sig {
struct sockaddr_storage tcpm_addr;
uint16_t __tcpm_pad1;
uint16_t tcpm_keylen;