diff options
author | 2009-06-05 19:38:53 +0000 | |
---|---|---|
committer | 2009-06-05 19:38:53 +0000 | |
commit | 8069582f75f3c77b853ca0024aafc1712946d135 (patch) | |
tree | f52ee5556bc16404365de63ea7b07ff4d92fcd90 | |
parent | The yp_bind(3) return code now distinguishes "YP not active" from "an error (diff) | |
download | wireguard-openbsd-8069582f75f3c77b853ca0024aafc1712946d135.tar.xz wireguard-openbsd-8069582f75f3c77b853ca0024aafc1712946d135.zip |
bump MAX_IMSGSIZE here as well
-rw-r--r-- | usr.sbin/relayd/imsg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/relayd/imsg.h b/usr.sbin/relayd/imsg.h index 45ad65a2ca7..3c1a3037bd5 100644 --- a/usr.sbin/relayd/imsg.h +++ b/usr.sbin/relayd/imsg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: imsg.h,v 1.5 2009/06/05 00:04:01 pyr Exp $ */ +/* $OpenBSD: imsg.h,v 1.6 2009/06/05 19:38:53 pyr Exp $ */ /* * Copyright (c) 2006, 2007 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -23,7 +23,7 @@ #define READ_BUF_SIZE 65535 #define IMSG_HEADER_SIZE sizeof(struct imsg_hdr) -#define MAX_IMSGSIZE 8192 +#define MAX_IMSGSIZE 16384 struct buf { TAILQ_ENTRY(buf) entry; |