1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

socket: increase buffer size to maximum MTU for UDP and IP layers

This commit is contained in:
Steffen Vogel 2018-12-04 10:39:31 +01:00
parent ac1b7070f8
commit 6d79075ee2

View file

@ -57,7 +57,7 @@ extern "C" {
struct format_type;
/** The maximum length of a packet which contains stuct msg. */
#define SOCKET_INITIAL_BUFFER_LEN 1500
#define SOCKET_INITIAL_BUFFER_LEN (64*1024)
enum socket_layer {
SOCKET_LAYER_ETH,