cOMS/http/header/HttpConnection.h
Dennis Eichhorn 2059cc6e77
Some checks failed
CodeQL / Analyze (${{ matrix.language }}) (autobuild, c-cpp) (push) Has been cancelled
Microsoft C++ Code Analysis / Analyze (push) Has been cancelled
update
2025-06-14 19:10:16 +00:00

15 lines
323 B
C

/**
* Jingga
*
* @copyright Jingga
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
#ifndef COMS_JINGGA_HTTP_HEADER_CONNECTION_H
#define COMS_JINGGA_HTTP_HEADER_CONNECTION_H
#define HTTP_HEADER_CONNECTION_CLOSE "close"
#define HTTP_HEADER_CONNECTION_KEEP_ALIVE "keep-alive"
#endif