 stt | |
  data | Data processing |
   CryptoUtil | Responsible for encryption, decryption, and hashing |
   BitUtil | Responsible for conversion between binary data and strings |
   RandomUtil | Related to random number and string generation |
   NetworkOrderUtil | Responsible for endianness conversion |
   PrecisionUtil | Responsible for floating-point precision processing |
   HttpStringUtil | Responsible for HTTP string and URL parsing Including functions to extract parameters, IP, port, request header fields, etc., from URLs or request messages |
   WebsocketStringUtil | Responsible for string operations related to the WebSocket protocol |
   NumberStringConvertUtil | Responsible for conversion between strings and numbers |
   EncodingUtil | Data encoding/decoding, mask processing, etc |
   JsonHelper | Class of solving json data |
  file | File-related operations: file reading and writing, logging, etc |
   FileTool | A utility class that provides static functions for file operations |
   FileThreadLock | A structure that records the relationship between files and threads |
   File | A class for reading and writing disk files |
   LogFile | Log file operation class |
  network | Network framework, protocols, communication, and IO multiplexing related |
   TcpFDHandler | TCP socket operation class |
   TcpClient | TCP client operation class |
   HttpClient | Http/Https client operation class |
   EpollSingle | Listen to a single handle with epoll |
   WebSocketClient | Websocket client operation class |
   HttpRequestInformation | Structure to save HTTP/HTTPS request information |
   HttpServerFDHandler | Operation class for parsing and responding to Http/https requests Only pass in the socket, then use this class for Http operations |
   WebSocketFDInformation | Structure to save client WS/WSS request information |
   TcpInformation | Save TCP client information |
   TcpFDInf | Structure to save TCP client information |
   WorkerMessage | Data structure for pushing tasks into a completion queue after they are completed at the work site |
   TcpServer | Tcp server class |
   HttpServer | Http/HttpServer server operation class |
   WebSocketServerFDHandler | WebSocket protocol operation class Only pass in the socket, then use this class for WebSocket operations |
   WebSocketServer | WebSocketServer server operation class |
   UdpFDHandler | UDP operation class Pass in the socket for UDP protocol operations |
   UdpClient | Udp client operation class |
   UdpServer | Udp server operation class |
  security | API related to information security |
   RateState | Runtime state for one limiter key (reused by multiple strategies) |
   ConnectionState | Security and limiter state for a single connection (fd) |
   IPInformation | Security state and connection set for a single IP |
   ConnectionLimiter | Unified connection & request security gate (IP-level + fd-level, multi-strategy limiting + blacklist) |
  system | System settings, process control, heartbeat monitoring, etc |
   ServerSetting | Class for initializing the service system |
   csemp | Synchronization tool class encapsulating System V semaphores |
   ProcessInf | Structure for process information |
   HBSystem | Class responsible for process heartbeat monitoring and scheduling Used to monitor service processes and ensure they continue to run effectively After the process ends, the shared memory at 0x5095 and the semaphore are not deleted Currently only supports processes with up to three parameters to join monitoring The logic of joining the heartbeat monitoring system, updating heartbeats, and checking the heartbeat system should be manually written in the program. This class only provides call interfaces |
   Process | Static utility class for process management |
   WorkerPool | Fixed-size worker thread pool |
  time | Time-related operations, basic time tools |
   Duration | A structure representing a time interval, supporting granularity in days, hours, minutes, seconds, and milliseconds |
   DateTime | Class for time operations, calculations, and timing |