You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
244 B
16 lines
244 B
#ifndef sockaddr_H
|
|
#define sockaddr_H
|
|
|
|
#include <arpa/inet.h>
|
|
#include <sys/socket.h>
|
|
|
|
// IP Address union, with flag field
|
|
struct SockAddr {
|
|
union {
|
|
struct sockaddr in;
|
|
struct sockaddr_in in4;
|
|
struct sockaddr_in6 in6;
|
|
};
|
|
};
|
|
|
|
#endif
|
|
|