diff options
author | Pierre-Yves Ritschard <pyr@cvs.openbsd.org> | 2009-06-05 19:36:11 +0000 |
---|---|---|
committer | Pierre-Yves Ritschard <pyr@cvs.openbsd.org> | 2009-06-05 19:36:11 +0000 |
commit | 77b0a895b7db3cacdfac1b26e962435b65c7fff1 (patch) | |
tree | 546a575e6fde9e0de8d06b07134329d2848dca83 | |
parent | c4b8b1d5af356fe8bc2ba92d8c8fc84895754c26 (diff) |
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; |