summaryrefslogtreecommitdiff
path: root/net-mgmt/ehnt/files/patch-config-h
blob: 0c7607a95b4f0af1deae698d81bf7cabffd6fbf9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
$FreeBSD$

--- config.h.orig	Thu Oct  4 22:18:29 2001
+++ config.h	Thu Nov 14 22:20:47 2002
@@ -32,4 +32,12 @@
 /* The default mode of the client.  Can be either EM_REPORT or EM_DUMP.*/
 #define EM_DEFAULT EM_TOP
 
+#ifndef ASNCDIR
+#define ASNCDIR "."
+#endif
 
+/* Default size of socket buffer. FreeBSD default is Limited to 256k,
+    + * but misteriously enough maximum space available for buf is 233016 */
+#define DEFAULT_SOCKBUF                (192*1024)
+/* Reasonable minimum socket buffer size. I assume it's about 16k */
+#define MIN_SOCKBUF            (16*1024)