mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 07:54:58 +00:00
18 lines
247 B
C
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
|