]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Incoming buffer must be at least 8KB long.
authorMartin Mares <mj@ucw.cz>
Mon, 8 May 2000 11:02:53 +0000 (11:02 +0000)
committerMartin Mares <mj@ucw.cz>
Mon, 8 May 2000 11:02:53 +0000 (11:02 +0000)
sysdep/linux/netlink/netlink.c

index 3bba85856108596010391fd2a580cb18c7779220..7f66af92d3a5e8929074da2c0cc021fce2ee80da 100644 (file)
@@ -42,7 +42,7 @@ static int nl_sync_fd = -1;           /* Unix socket for synchronous netlink actions */
 static u32 nl_sync_seq;                        /* Sequence number of last request sent */
 
 static byte *nl_rx_buffer;             /* Receive buffer */
-#define NL_RX_SIZE 2048
+#define NL_RX_SIZE 8192
 
 static struct nlmsghdr *nl_last_hdr;   /* Recently received packet */
 static unsigned int nl_last_size;