]> andersk Git - gssapi-openssh.git/blobdiff - openssh/buffer.c
The man2html from jbasney on pkilab2 works whereas the standard one doesn't.
[gssapi-openssh.git] / openssh / buffer.c
index bdeb069db1c2b463b2237399cea312a1514b4a8f..cb0b620703ccadf23ce5eb480c6fdeb6542c018d 100644 (file)
 #define        BUFFER_MAX_LEN          0xa00000
 #define        BUFFER_ALLOCSZ          0x008000
 
-/* this value for BUFFER_MAX_HPN_LEN is */
-/* still undersized for the faster networks */
-/* it might make sense to have yet another */
-/* MAX_LEN for 10+GB networks. Something closer to */
-/* 128MB or 192MB -cjr*/
-#define        BUFFER_MAX_HPN_LEN      0x2000000 /*32MB*/
-
 /* Initializes the buffer structure. */
 
 void
@@ -134,7 +127,7 @@ restart:
 
        /* Increase the size of the buffer and retry. */
        newlen = roundup(buffer->alloc + len, BUFFER_ALLOCSZ);
-       if (newlen > BUFFER_MAX_HPN_LEN)
+       if (newlen > BUFFER_MAX_LEN_HPN)
                fatal("buffer_append_space: alloc %u not supported",
                    newlen);
        buffer->buf = xrealloc(buffer->buf, 1, newlen);
This page took 0.053002 seconds and 4 git commands to generate.