X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=blobdiff_plain;f=util.h;h=836b53efe55c77fea0cfd5ac7f0ab5331c7690d3;hb=1bf7d7b80bd8af6385651d5ba7649a274c3885c2;hp=7991743be32ab70196c41015934123fd044227ce;hpb=28db900b071a43718c4227e759fa76cb8c6359af;p=secnet.git diff --git a/util.h b/util.h index 7991743..836b53e 100644 --- a/util.h +++ b/util.h @@ -29,6 +29,11 @@ extern void *buf_prepend(struct buffer_if *buf, int32_t amount); extern void *buf_unappend(struct buffer_if *buf, int32_t amount); extern void *buf_unprepend(struct buffer_if *buf, int32_t amount); +static inline int32_t buf_remaining_space(const struct buffer_if *buf) +{ + return (buf->base + buf->alloclen) - (buf->start + buf->size); +} + extern void buffer_readonly_view(struct buffer_if *n, const void*, int32_t len); extern void buffer_readonly_clone(struct buffer_if *n, const struct buffer_if*); /* Caller must only use unappend, unprepend et al. on n. @@ -45,4 +50,22 @@ extern int32_t write_mpbin(MP_INT *a, uint8_t *buffer, int32_t buflen); extern struct log_if *init_log(list_t *loglist); +extern void send_nak(const struct comm_addr *dest, uint32_t our_index, + uint32_t their_index, uint32_t msgtype, + struct buffer_if *buf, const char *logwhy); + +extern int consttime_memeq(const void *s1, const void *s2, size_t n); + +const char *iaddr_to_string(const union iaddr *ia); +bool_t iaddr_equal(const union iaddr *ia, const union iaddr *ib); +int iaddr_socklen(const union iaddr *ia); + +#define MINMAX(ae,be,op) ({ \ + typeof((ae)) a=(ae); \ + typeof((be)) b=(be); \ + a op b ? a : b; \ + }) +#define MAX(a,b) MINMAX((a),(b),>) +#define MIN(a,b) MINMAX((a),(b),<) + #endif /* util_h */