From 9e635d9b19e72eefef082dd8071d3e4c9d6cfab1 Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Thu, 7 May 2020 19:24:45 +0200 Subject: Separated out TCP socket class --- plugins/fcgi/fcgiid.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 plugins/fcgi/fcgiid.h (limited to 'plugins/fcgi/fcgiid.h') diff --git a/plugins/fcgi/fcgiid.h b/plugins/fcgi/fcgiid.h new file mode 100644 index 0000000..e3649d7 --- /dev/null +++ b/plugins/fcgi/fcgiid.h @@ -0,0 +1,18 @@ +#pragma once + +#include +#include + +class FCGI_ID +{ + std::setm_unused; + uint16_t m_current_max{}; + +public: + FCGI_ID(){} + + uint16_t getID(); + void putID(uint16_t id); +}; + + -- cgit v1.2.3