From 23faf651e513eacaed168ac5093f6018e7008666 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 29 Sep 2019 20:28:46 +0100 Subject: [PATCH] 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 --- secnet.h | 1 + 1 file changed, 1 insertion(+) 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; -- 2.30.2