From 84f2d47c741d293c04bf5f09067d642a6cae03ca Mon Sep 17 00:00:00 2001 From: Shelikhoo Date: Sun, 16 Jan 2022 21:45:31 +0000 Subject: [PATCH] add bind to device, socket buf size setting to socket options --- transport/internet/config.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/transport/internet/config.proto b/transport/internet/config.proto index b5584a3ac..45df4a84b 100644 --- a/transport/internet/config.proto +++ b/transport/internet/config.proto @@ -97,4 +97,10 @@ message SocketConfig { uint32 tfo_queue_length = 9; int32 tcp_keep_alive_idle = 10; + + string bind_to_device = 11; + + int64 socket_rx_buf_size = 12; + + int64 socket_tx_buf_size = 13; }