Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libopenarc/arc-internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
#endif /* __STDC__ */

/* limits, macros, etc. */
#define BUFRSZ 1024 /* base temp buffer size */
#define BUFRSZ 2048 /* base temp buffer size */
#define BASE64SIZE(x) (((x + 2) / 3) * 4)
/* base64 encoding growth ratio */
#define MAXADDRESS 256 /* biggest user@host we accept */
Expand Down
2 changes: 1 addition & 1 deletion libopenarc/arc.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ void arc_error __P((ARC_MESSAGE *, const char *, ...));

#define CRLF "\r\n"

#define BUFRSZ 1024
#define BUFRSZ 2048
#define DEFERRLEN 128
#define DEFTIMEOUT 10

Expand Down
2 changes: 1 addition & 1 deletion openarc/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#include "config.h"

/* limits */
#define BUFRSZ 1024 /* generic buffer size */
#define BUFRSZ 2048 /* generic buffer size */
#define MAXLEVEL 5 /* max. include recursion */

#ifndef FALSE
Expand Down
2 changes: 1 addition & 1 deletion openarc/openarc-ar.c
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ main(int argc, char **argv)
char *p;
char *progname;
struct authres ar;
u_char buf[1024];
u_char buf[2048];
u_char *toks[NTOKENS];

progname = (p = strrchr(argv[0], '/')) == NULL ? argv[0] : p + 1;
Expand Down
2 changes: 1 addition & 1 deletion openarc/openarc.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
#endif /* !TRUE */

/* defaults, limits, etc. */
#define BUFRSZ 1024
#define BUFRSZ 2048
#define CONFIGOPTS "Ac:flnp:P:rt:u:vV"
#define DEFCONFFILE CONFIG_BASE "/openarc.conf"
#define DEFINTERNAL "csl:127.0.0.1,::1"
Expand Down