X-Git-Url: https://git.distorted.org.uk/~mdw/secnet/blobdiff_plain/5c679ae0bf87d5d53b65c5e7667a1fa304bdcdeb..eecff7e35bcb1dbde57c380dc13649c3fc579e92:/comm-common.h diff --git a/comm-common.h b/comm-common.h index ed6a86b..aa757e1 100644 --- a/comm-common.h +++ b/comm-common.h @@ -3,6 +3,7 @@ #define COMM_COMMON_H #include "secnet.h" +#include "util.h" /*----- for all comms -----*/ @@ -62,9 +63,12 @@ void comm_apply(struct commcommon *cc, void *st); #define UDP_MAX_SOCKETS 3 /* 2 ought to do really */ +#define MAX_AF MAX_RAW(AF_INET6,AF_INET) + struct udpsock { union iaddr addr; int fd; + bool_t experienced[/*0=recv,1=send*/2][MAX_AF+1][/*success?*/2]; }; struct udpsocks { @@ -87,8 +91,18 @@ bool_t udp_make_socket(struct udpcommon *uc, struct udpsock *us, int failmsgclass); /* Fills in us->fd. Logs any errors with lg_[v]perror. */ +void udp_destroy_socket(struct udpcommon *uc, struct udpsock *us); + /* Idempotent. No errors are possible. */ + +const char *af_name(int af); +void udp_sock_experienced(struct log_if *lg, struct udpcommon *uc, + const char *socksdesc, struct udpsock *us, + bool_t recvsend, int af /* 0 means any */, + int r, int errnoval); + void udp_socks_register(struct udpcommon *uc, struct udpsocks *socks); void udp_socks_deregister(struct udpcommon *uc, struct udpsocks *socks); +void udp_socks_childpersist(struct udpcommon *uc, struct udpsocks *socks); #define UDP_APPLY_STANDARD(st,uc,desc) \ (uc)->use_proxy=False; \