diff options
author | 2009-06-05 19:36:10 +0000 | |
---|---|---|
committer | 2009-06-05 19:36:10 +0000 | |
commit | ae45834292b2901b183ea30cc6a75d8110749760 (patch) | |
tree | 5e5da076326c24e2b4dd38aa8dbda60705731bf2 | |
parent | - make this a lot more readable; no binary change (diff) | |
download | wireguard-openbsd-ae45834292b2901b183ea30cc6a75d8110749760.tar.xz wireguard-openbsd-ae45834292b2901b183ea30cc6a75d8110749760.zip |
bump MAX_IMSGSIZE to 16384, this will make smtpd happy later on.
-rw-r--r-- | usr.sbin/ospfd/imsg.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ospfd/imsg.h b/usr.sbin/ospfd/imsg.h index ce89b281534..d74a45c7260 100644 --- a/usr.sbin/ospfd/imsg.h +++ b/usr.sbin/ospfd/imsg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: imsg.h,v 1.1 2009/06/05 19:33:59 pyr Exp $ */ +/* $OpenBSD: imsg.h,v 1.2 2009/06/05 19:36:10 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; |