1 #include "socket_base.h"
4 #include "http_connection.h"
5 #include "baseincomingset.h"
6 #include "socket_base.h"
9 #include "http_request.h"
14 std::set< Http_Request * > Global_WebRequests_pendingNotify;
17 bool Http_Request::HttpManager_Initialize(
unsigned short port)
22 return Global_HttpManager.init(address);
28 Global_HttpManager.PumpAll(Know);
30 std::set< Http_Request * >::iterator ii = Global_WebRequests_pendingNotify.begin();
31 if(ii != Global_WebRequests_pendingNotify.end())
34 Global_WebRequests_pendingNotify.erase(ii);
A simple place to store and munipulate tcp and port address for communication layer.
A base structre for a listening socket and a set of connection that have been received with there rea...
TypeHandle is the identifier used to differentiate C++ class types.
bool set_port(int port)
Set to a specified port.