Changeset 10394 for source/ariba
- Timestamp:
- Dec 21, 2011, 3:31:13 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/transport/tcpip/protlib/network_message.cpp
r9686 r10394 41 41 42 42 #include "network_message.h" 43 44 43 #include "logfile.h" // only required for color definitions 45 44 … … 72 71 * very large messages. 73 72 */ 74 const uint32 NetMsg::max_size = 128000; 73 const uint32 NetMsg::max_size = 74 #ifdef PROTLIBMESSAGESIZE 75 PROTLIBMESSAGESIZE 76 #else 77 128000 78 #endif 79 ; 75 80 76 81 /** Creates a network message object of the desired size if possible.
Note:
See TracChangeset
for help on using the changeset viewer.