X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fmeta.c;h=260cb005051ff9cf6ab33473fe22d1e5a5308552;hp=a05c7bd24f4239287e27254f6391a12dcbaa661e;hb=d4410d0cce40929db9a0ce7042ef962f1867234d;hpb=7e6b2dd1ea51057b7135139c200d97a9e8f9c9cb diff --git a/src/meta.c b/src/meta.c index a05c7bd2..260cb005 100644 --- a/src/meta.c +++ b/src/meta.c @@ -30,6 +30,10 @@ #include "utils.h" #include "xalloc.h" +#ifndef MIN +#define MIN(x, y) (((x)<(y))?(x):(y)) +#endif + bool send_meta_sptps(void *handle, uint8_t type, const void *buffer, size_t length) { connection_t *c = handle;