X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=secnet.git;a=blobdiff_plain;f=secnet.h;h=194341c434670902e772b58a956fbfbe6fd4b050;hp=44b180f043d04baa27ac6cc8155f13cbc69067e6;hb=3c35339bc4d3db033cc44558baf66c80e87fbd85;hpb=ff1dcd860a6176d24ad1dd7c3b8756c685ca90c6 diff --git a/secnet.h b/secnet.h index 44b180f..194341c 100644 --- a/secnet.h +++ b/secnet.h @@ -344,6 +344,11 @@ struct comm_if { comm_addr_to_string_fn *addr_to_string; }; +static inline const char *comm_addr_to_string(const struct comm_addr *ca) +{ + return ca->comm->addr_to_string(ca->comm->st, ca); +} + /* LOG interface */ #define LOG_MESSAGE_BUFLEN 1023 @@ -494,7 +499,7 @@ struct buffer_if { uint8_t *base; uint8_t *start; int32_t size; /* Size of buffer contents */ - int32_t len; /* Total length allocated at base */ + int32_t alloclen; /* Total length allocated at base */ }; /***** LOG functions *****/