Changeset 10394 for source/ariba


Ignore:
Timestamp:
Dec 21, 2011, 3:31:13 PM (12 years ago)
Author:
mayer@…
Message:

-can define protlib message size at configure time using CPPFLAGS='-DPROTLIBMESSAGESIZE=200000'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/utility/transport/tcpip/protlib/network_message.cpp

    r9686 r10394  
    4141
    4242#include "network_message.h"
    43 
    4443#include "logfile.h" // only required for color definitions
    4544
     
    7271 * very large messages.
    7372 */
    74 const uint32 NetMsg::max_size = 128000;
     73const uint32 NetMsg::max_size =
     74        #ifdef PROTLIBMESSAGESIZE
     75                PROTLIBMESSAGESIZE
     76        #else
     77                128000
     78        #endif
     79;
    7580
    7681/** Creates a network message object of the desired size if possible.
Note: See TracChangeset for help on using the changeset viewer.