HTTPServer/FlowQueue.h
2024-07-16 16:50:20 -07:00

27 lines
340 B
C++

#ifndef __FlowQueue_h__
# define __FlowQueue_h__
#include "HTTPParameters.h"
#include "ZString.h"
namespace http {
class FlowQueue {
public:
FlowQueue();
virtual bool process();
coreutils::ZString getId();
protected:
char actionId[64];
const char *hex = "0123456789ABCDEF";
};
}
#endif