mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
Ports/dropbear: Add support for TCP_NODELAY
This commit is contained in:
parent
e6c363ac63
commit
eb71950c8b
Notes:
sideshowbarker
2024-07-16 16:23:32 +09:00
Author: https://github.com/romch007 Commit: https://github.com/SerenityOS/serenity/commit/eb71950c8b Pull-request: https://github.com/SerenityOS/serenity/pull/21843 Reviewed-by: https://github.com/timschumi ✅
1 changed files with 2 additions and 15 deletions
|
@ -21,20 +21,7 @@ index 2ed9bb1..e0e9962 100644
|
|||
#define IOV_MAX 1024
|
||||
#elif defined(__sgi)
|
||||
#define IOV_MAX 512
|
||||
@@ -346,11 +346,7 @@ void packet_queue_consume(struct Queue *queue, ssize_t written) {
|
||||
}
|
||||
|
||||
void set_sock_nodelay(int sock) {
|
||||
- int val;
|
||||
-
|
||||
- /* disable nagle */
|
||||
- val = 1;
|
||||
- setsockopt(sock, IPPROTO_TCP, TCP_NODELAY, (void*)&val, sizeof(val));
|
||||
+ (void)sock;
|
||||
}
|
||||
|
||||
#if DROPBEAR_SERVER_TCP_FAST_OPEN
|
||||
@@ -469,7 +465,6 @@ int dropbear_listen(const char* address, const char* port,
|
||||
@@ -469,7 +469,6 @@ int dropbear_listen(const char* address, const char* port,
|
||||
struct addrinfo hints, *res = NULL, *res0 = NULL;
|
||||
int err;
|
||||
unsigned int nsock;
|
||||
|
@ -42,7 +29,7 @@ index 2ed9bb1..e0e9962 100644
|
|||
int val;
|
||||
int sock;
|
||||
uint16_t *allocated_lport_p = NULL;
|
||||
@@ -548,9 +543,6 @@ int dropbear_listen(const char* address, const char* port,
|
||||
@@ -548,9 +547,6 @@ int dropbear_listen(const char* address, const char* port,
|
||||
val = 1;
|
||||
/* set to reuse, quick timeout */
|
||||
setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (void*) &val, sizeof(val));
|
||||
|
|
Loading…
Reference in a new issue