You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by ge...@apache.org on 2006/06/26 22:20:10 UTC

svn commit: r417292 - /incubator/harmony/enhanced/classlib/trunk/native-src/linux.IA32/port/hysock.c

Author: geirm
Date: Mon Jun 26 13:20:10 2006
New Revision: 417292

URL: http://svn.apache.org/viewvc?rev=417292&view=rev
Log:
now move to a 2k buffer, which is sufficient
for anything we've seen so far w/o needing 
a realloc.

Modified:
    incubator/harmony/enhanced/classlib/trunk/native-src/linux.IA32/port/hysock.c

Modified: incubator/harmony/enhanced/classlib/trunk/native-src/linux.IA32/port/hysock.c
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/native-src/linux.IA32/port/hysock.c?rev=417292&r1=417291&r2=417292&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/native-src/linux.IA32/port/hysock.c (original)
+++ incubator/harmony/enhanced/classlib/trunk/native-src/linux.IA32/port/hysock.c Mon Jun 26 13:20:10 2006
@@ -58,7 +58,7 @@
   struct nlmsghdr netlinkHeader;
   struct ifaddrmsg msg;
 } addrReq_struct;
-#define NETLINK_DATA_BUFFER_SIZE 1024
+#define NETLINK_DATA_BUFFER_SIZE 2048
 #define NETLINK_READTIMEOUT_SECS 20
 typedef struct netlinkContext_struct
 {