1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 07:54:58 +00:00
serenity/Kernel/API/POSIX/netinet/tcp.h
2023-11-08 09:31:54 +01:00

18 lines
247 B
C

/*
* Copyright (c) 2023, Romain Chardiny <romain.chardiny@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#define TCP_NODELAY 10
#define TCP_MAXSEG 11
#ifdef __cplusplus
}
#endif