From: Ian Jackson Date: Sun, 29 Sep 2019 19:28:46 +0000 (+0100) Subject: sigkey handling: define MAX_SIG_KEYS X-Git-Tag: v0.6.0~215 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=secnet.git;a=commitdiff_plain;h=23faf651e513eacaed168ac5093f6018e7008666 sigkey handling: define MAX_SIG_KEYS This is going to control the number of different public keys we will use from a keyset, and also the number we will look at when listed as acceptable by a relying peer. No users yet in this commit, though. Signed-off-by: Ian Jackson --- diff --git a/secnet.h b/secnet.h index dd5650d..f7bb3e5 100644 --- a/secnet.h +++ b/secnet.h @@ -49,6 +49,7 @@ /* send at most this many copies; honour at most that many addresses */ #define MAX_NAK_MSG 80 +#define MAX_SIG_KEYS 4 struct hash_if; struct comm_if;