Home
last modified time | relevance | path

Searched refs:HttpServer (Results 1 – 25 of 1829) sorted by relevance

12345678910>>...74

/dports/finance/quickfix/quickfix-1.15.1/src/C++/
H A DHttpServer.cpp33 Mutex HttpServer::s_mutex;
34 int HttpServer::s_count = 0;
35 HttpServer* HttpServer::s_pServer = 0;
48 s_pServer = new HttpServer( s ); in startGlobal()
53 void HttpServer::stopGlobal() in stopGlobal()
66 HttpServer::HttpServer( const SessionSettings& settings ) throw( ConfigError ) in HttpServer() function in FIX::HttpServer
99 void HttpServer::stop() in stop()
110 void HttpServer::onStart() in onStart()
122 bool HttpServer::onPoll() in onPoll()
131 void HttpServer::onStop() in onStop()
[all …]
/dports/graphics/airsaned/AirSane-0.3.2-50-gdeab313/web/
H A Dhttpserver.cpp453 HttpServer::HttpServer() in HttpServer() function in HttpServer
459 HttpServer::~HttpServer() in ~HttpServer()
464 HttpServer&
483 HttpServer&
512 HttpServer&
525 HttpServer&
538 HttpServer&
552 HttpServer::run() in run()
576 HttpServer::onRequest(const HttpServer::Request&, in onRequest()
637 HttpServer::Response&
[all …]
/dports/deskutils/ausweisapp2/AusweisApp2-1.22.2/src/network/
H A DHttpServer.cpp15 quint16 HttpServer::cPort = PortFile::cDefaultPort;
18 HttpServer::HttpServer(quint16 pPort) in HttpServer() function in HttpServer
23 connect(mServer.data(), &QTcpServer::newConnection, this, &HttpServer::onNewConnection); in HttpServer()
37 HttpServer::~HttpServer() in ~HttpServer()
47 bool HttpServer::isListening() const in isListening()
53 quint16 HttpServer::getServerPort() const in getServerPort()
59 void HttpServer::onNewConnection() in onNewConnection()
66 connect(request, &HttpRequest::fireMessageComplete, this, &HttpServer::onMessageComplete); in onNewConnection()
71 bool HttpServer::checkReceiver(const QMetaMethod& pSignal, HttpRequest* pRequest) in checkReceiver()
85 void HttpServer::onMessageComplete(HttpRequest* pRequest) in onMessageComplete()
[all …]
/dports/misc/orion/orion-1.6.7-12-gec8400c/src/network/
H A Dhttpserver.cpp3 HttpServer::HttpServer(QObject *parent): QObject(parent) in HttpServer() function in HttpServer
8 HttpServer *HttpServer::getInstance() { in getInstance()
9 static HttpServer *instance = new HttpServer(); in getInstance()
13 QString HttpServer::port() { in port()
17 bool HttpServer::isOk() const in isOk()
22 void HttpServer::start() { in start()
32 connect(server, &QTcpServer::newConnection, this, &HttpServer::onConnect); in start()
42 void HttpServer::stop() { in stop()
50 void HttpServer::onConnect() { in onConnect()
53 connect(socket, &QTcpSocket::readyRead, this, &HttpServer::onRead); in onConnect()
[all …]
/dports/multimedia/mswebrtc/mswebrtc-1.1.1/webrtc/webrtc/base/
H A Dhttpserver.h20 class HttpServer; variable
38 class HttpServer {
40 HttpServer();
41 virtual ~HttpServer();
54 sigslot::signal3<HttpServer*, HttpServerTransaction*, bool*>
62 sigslot::signal2<HttpServer*, HttpServerTransaction*> SignalHttpRequest;
66 sigslot::signal3<HttpServer*, HttpServerTransaction*, int>
77 sigslot::signal1<HttpServer*> SignalCloseAllComplete;
82 Connection(int connection_id, HttpServer* server);
97 HttpServer* server_;
[all …]
H A Dhttpserver_unittest.cc29 HttpServerMonitor(HttpServer* server) in HttpServerMonitor()
39 void OnRequest(HttpServer*, HttpServerTransaction* t) { in OnRequest()
49 void OnClosed(HttpServer*) { in OnClosed()
58 void CreateClientConnection(HttpServer& server, in CreateClientConnection()
76 HttpServer server; in TEST()
89 TEST(HttpServer, SignalsCloseWhenNoConnectionsAreActive) { in TEST() argument
90 HttpServer server; in TEST()
101 TEST(HttpServer, SignalsCloseAfterGracefulCloseAll) { in TEST() argument
102 HttpServer server; in TEST()
118 TEST(HttpServer, SignalsCloseAfterForcedCloseAll) { in TEST() argument
[all …]
H A Dhttpserver.cc28 HttpServer::HttpServer() : next_connection_id_(1), closing_(false) { in HttpServer() function in rtc::HttpServer
31 HttpServer::~HttpServer() { in ~HttpServer()
67 HttpServer::Close(int connection_id, bool force) { in Close()
74 HttpServer::CloseAll(bool force) { in CloseAll()
91 HttpServer::Connection*
92 HttpServer::Find(int connection_id) { in Find()
100 HttpServer::Remove(int connection_id) { in Remove()
120 HttpServer::Connection::Connection(int connection_id, HttpServer* server) in Connection()
125 HttpServer::Connection::~Connection() { in ~Connection()
141 HttpServer::Connection::EndProcess() { in EndProcess()
[all …]
/dports/net-im/kopete/kopete-21.12.3/protocols/jabber/libjingle/talk/base/
H A Dhttpserver.h37 class HttpServer; variable
55 class HttpServer {
57 HttpServer();
58 virtual ~HttpServer();
71 sigslot::signal3<HttpServer*, HttpServerTransaction*, bool*>
79 sigslot::signal2<HttpServer*, HttpServerTransaction*> SignalHttpRequest;
83 sigslot::signal3<HttpServer*, HttpServerTransaction*, int>
94 sigslot::signal1<HttpServer*> SignalCloseAllComplete;
99 Connection(int connection_id, HttpServer* server);
114 HttpServer* server_;
[all …]
H A Dhttpserver_unittest.cc28 HttpServerMonitor(HttpServer* server) in HttpServerMonitor()
38 void OnRequest(HttpServer*, HttpServerTransaction* t) { in OnRequest()
48 void OnClosed(HttpServer*) { in OnClosed()
57 void CreateClientConnection(HttpServer& server, in CreateClientConnection()
75 HttpServer server; in TEST()
88 TEST(HttpServer, SignalsCloseWhenNoConnectionsAreActive) { in TEST() argument
89 HttpServer server; in TEST()
100 TEST(HttpServer, SignalsCloseAfterGracefulCloseAll) { in TEST() argument
101 HttpServer server; in TEST()
117 TEST(HttpServer, SignalsCloseAfterForcedCloseAll) { in TEST() argument
[all …]
H A Dhttpserver.cc45 HttpServer::HttpServer() : next_connection_id_(1), closing_(false) { in HttpServer() function in talk_base::HttpServer
48 HttpServer::~HttpServer() { in ~HttpServer()
84 HttpServer::Close(int connection_id, bool force) { in Close()
91 HttpServer::CloseAll(bool force) { in CloseAll()
108 HttpServer::Connection*
109 HttpServer::Find(int connection_id) { in Find()
117 HttpServer::Remove(int connection_id) { in Remove()
137 HttpServer::Connection::Connection(int connection_id, HttpServer* server) in Connection()
142 HttpServer::Connection::~Connection() { in ~Connection()
158 HttpServer::Connection::EndProcess() { in EndProcess()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/libwebrtc/webrtc/rtc_base/
H A Dhttpserver.h22 class HttpServer; variable
40 class HttpServer {
42 HttpServer();
43 virtual ~HttpServer();
56 sigslot::signal3<HttpServer*, HttpServerTransaction*, bool*>
64 sigslot::signal2<HttpServer*, HttpServerTransaction*> SignalHttpRequest;
68 sigslot::signal3<HttpServer*, HttpServerTransaction*, int>
79 sigslot::signal1<HttpServer*> SignalCloseAllComplete;
84 Connection(int connection_id, HttpServer* server);
99 HttpServer* server_;
[all …]
H A Dhttpserver_unittest.cc29 HttpServerMonitor(HttpServer* server) in HttpServerMonitor()
39 void OnRequest(HttpServer*, HttpServerTransaction* t) { in OnRequest()
49 void OnClosed(HttpServer*) { in OnClosed()
58 void CreateClientConnection(HttpServer& server, in CreateClientConnection()
76 HttpServer server; in TEST()
89 TEST(HttpServer, SignalsCloseWhenNoConnectionsAreActive) { in TEST() argument
90 HttpServer server; in TEST()
101 TEST(HttpServer, SignalsCloseAfterGracefulCloseAll) { in TEST() argument
102 HttpServer server; in TEST()
118 TEST(HttpServer, SignalsCloseAfterForcedCloseAll) { in TEST() argument
[all …]
H A Dhttpserver.cc28 HttpServer::HttpServer() : next_connection_id_(1), closing_(false) { in HttpServer() function in rtc::HttpServer
31 HttpServer::~HttpServer() { in ~HttpServer()
67 HttpServer::Close(int connection_id, bool force) { in Close()
74 HttpServer::CloseAll(bool force) { in CloseAll()
91 HttpServer::Connection*
92 HttpServer::Find(int connection_id) { in Find()
100 HttpServer::Remove(int connection_id) { in Remove()
120 HttpServer::Connection::Connection(int connection_id, HttpServer* server) in Connection()
127 HttpServer::Connection::~Connection() { in ~Connection()
143 HttpServer::Connection::EndProcess() { in EndProcess()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/media/webrtc/trunk/webrtc/base/
H A Dhttpserver.h22 class HttpServer; variable
40 class HttpServer {
42 HttpServer();
43 virtual ~HttpServer();
56 sigslot::signal3<HttpServer*, HttpServerTransaction*, bool*>
64 sigslot::signal2<HttpServer*, HttpServerTransaction*> SignalHttpRequest;
68 sigslot::signal3<HttpServer*, HttpServerTransaction*, int>
79 sigslot::signal1<HttpServer*> SignalCloseAllComplete;
84 Connection(int connection_id, HttpServer* server);
99 HttpServer* server_;
[all …]
H A Dhttpserver_unittest.cc29 HttpServerMonitor(HttpServer* server) in HttpServerMonitor()
39 void OnRequest(HttpServer*, HttpServerTransaction* t) { in OnRequest()
49 void OnClosed(HttpServer*) { in OnClosed()
58 void CreateClientConnection(HttpServer& server, in CreateClientConnection()
76 HttpServer server; in TEST()
89 TEST(HttpServer, SignalsCloseWhenNoConnectionsAreActive) { in TEST() argument
90 HttpServer server; in TEST()
101 TEST(HttpServer, SignalsCloseAfterGracefulCloseAll) { in TEST() argument
102 HttpServer server; in TEST()
118 TEST(HttpServer, SignalsCloseAfterForcedCloseAll) { in TEST() argument
[all …]
H A Dhttpserver.cc29 HttpServer::HttpServer() : next_connection_id_(1), closing_(false) { in HttpServer() function in rtc::HttpServer
32 HttpServer::~HttpServer() { in ~HttpServer()
68 HttpServer::Close(int connection_id, bool force) { in Close()
75 HttpServer::CloseAll(bool force) { in CloseAll()
92 HttpServer::Connection*
93 HttpServer::Find(int connection_id) { in Find()
101 HttpServer::Remove(int connection_id) { in Remove()
121 HttpServer::Connection::Connection(int connection_id, HttpServer* server) in Connection()
126 HttpServer::Connection::~Connection() { in ~Connection()
142 HttpServer::Connection::EndProcess() { in EndProcess()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/media/webrtc/trunk/webrtc/base/
H A Dhttpserver.h20 class HttpServer; variable
38 class HttpServer {
40 HttpServer();
41 virtual ~HttpServer();
54 sigslot::signal3<HttpServer*, HttpServerTransaction*, bool*>
62 sigslot::signal2<HttpServer*, HttpServerTransaction*> SignalHttpRequest;
66 sigslot::signal3<HttpServer*, HttpServerTransaction*, int>
77 sigslot::signal1<HttpServer*> SignalCloseAllComplete;
82 Connection(int connection_id, HttpServer* server);
97 HttpServer* server_;
[all …]
H A Dhttpserver_unittest.cc29 HttpServerMonitor(HttpServer* server) in HttpServerMonitor()
39 void OnRequest(HttpServer*, HttpServerTransaction* t) { in OnRequest()
49 void OnClosed(HttpServer*) { in OnClosed()
58 void CreateClientConnection(HttpServer& server, in CreateClientConnection()
76 HttpServer server; in TEST()
89 TEST(HttpServer, SignalsCloseWhenNoConnectionsAreActive) { in TEST() argument
90 HttpServer server; in TEST()
101 TEST(HttpServer, SignalsCloseAfterGracefulCloseAll) { in TEST() argument
102 HttpServer server; in TEST()
118 TEST(HttpServer, SignalsCloseAfterForcedCloseAll) { in TEST() argument
[all …]
H A Dhttpserver.cc28 HttpServer::HttpServer() : next_connection_id_(1), closing_(false) { in HttpServer() function in rtc::HttpServer
31 HttpServer::~HttpServer() { in ~HttpServer()
67 HttpServer::Close(int connection_id, bool force) { in Close()
74 HttpServer::CloseAll(bool force) { in CloseAll()
91 HttpServer::Connection*
92 HttpServer::Find(int connection_id) { in Find()
100 HttpServer::Remove(int connection_id) { in Remove()
120 HttpServer::Connection::Connection(int connection_id, HttpServer* server) in Connection()
125 HttpServer::Connection::~Connection() { in ~Connection()
141 HttpServer::Connection::EndProcess() { in EndProcess()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/third_party/libwebrtc/webrtc/rtc_base/
H A Dhttpserver.h22 class HttpServer; variable
40 class HttpServer {
42 HttpServer();
43 virtual ~HttpServer();
56 sigslot::signal3<HttpServer*, HttpServerTransaction*, bool*>
64 sigslot::signal2<HttpServer*, HttpServerTransaction*> SignalHttpRequest;
68 sigslot::signal3<HttpServer*, HttpServerTransaction*, int>
79 sigslot::signal1<HttpServer*> SignalCloseAllComplete;
84 Connection(int connection_id, HttpServer* server);
99 HttpServer* server_;
[all …]
H A Dhttpserver_unittest.cc29 HttpServerMonitor(HttpServer* server) in HttpServerMonitor()
39 void OnRequest(HttpServer*, HttpServerTransaction* t) { in OnRequest()
49 void OnClosed(HttpServer*) { in OnClosed()
58 void CreateClientConnection(HttpServer& server, in CreateClientConnection()
76 HttpServer server; in TEST()
89 TEST(HttpServer, SignalsCloseWhenNoConnectionsAreActive) { in TEST() argument
90 HttpServer server; in TEST()
101 TEST(HttpServer, SignalsCloseAfterGracefulCloseAll) { in TEST() argument
102 HttpServer server; in TEST()
118 TEST(HttpServer, SignalsCloseAfterForcedCloseAll) { in TEST() argument
[all …]
H A Dhttpserver.cc28 HttpServer::HttpServer() : next_connection_id_(1), closing_(false) { in HttpServer() function in rtc::HttpServer
31 HttpServer::~HttpServer() { in ~HttpServer()
67 HttpServer::Close(int connection_id, bool force) { in Close()
74 HttpServer::CloseAll(bool force) { in CloseAll()
91 HttpServer::Connection*
92 HttpServer::Find(int connection_id) { in Find()
100 HttpServer::Remove(int connection_id) { in Remove()
120 HttpServer::Connection::Connection(int connection_id, HttpServer* server) in Connection()
127 HttpServer::Connection::~Connection() { in ~Connection()
143 HttpServer::Connection::EndProcess() { in EndProcess()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/media/webrtc/trunk/webrtc/rtc_base/
H A Dhttpserver.h22 class HttpServer; variable
40 class HttpServer {
42 HttpServer();
43 virtual ~HttpServer();
56 sigslot::signal3<HttpServer*, HttpServerTransaction*, bool*>
64 sigslot::signal2<HttpServer*, HttpServerTransaction*> SignalHttpRequest;
68 sigslot::signal3<HttpServer*, HttpServerTransaction*, int>
79 sigslot::signal1<HttpServer*> SignalCloseAllComplete;
84 Connection(int connection_id, HttpServer* server);
99 HttpServer* server_;
[all …]
H A Dhttpserver_unittest.cc29 HttpServerMonitor(HttpServer* server) in HttpServerMonitor()
39 void OnRequest(HttpServer*, HttpServerTransaction* t) { in OnRequest()
49 void OnClosed(HttpServer*) { in OnClosed()
58 void CreateClientConnection(HttpServer& server, in CreateClientConnection()
76 HttpServer server; in TEST()
89 TEST(HttpServer, SignalsCloseWhenNoConnectionsAreActive) { in TEST() argument
90 HttpServer server; in TEST()
101 TEST(HttpServer, SignalsCloseAfterGracefulCloseAll) { in TEST() argument
102 HttpServer server; in TEST()
118 TEST(HttpServer, SignalsCloseAfterForcedCloseAll) { in TEST() argument
[all …]
/dports/databases/hbase/hbase-1.2.1/hbase-server/src/test/java/org/apache/hadoop/hbase/http/
H A DHttpServerFunctionalTest.java25 import org.apache.hadoop.hbase.http.HttpServer.Builder;
56 public static HttpServer createTestServer() throws IOException { in createTestServer()
70 public static HttpServer createTestServer(Configuration conf) in createTestServer()
91 public static HttpServer createTestServer(Configuration conf, in createTestServer()
122 public static HttpServer createServer(String host, int port) in createServer()
125 return new HttpServer.Builder().setName(TEST) in createServer()
146 public static HttpServer createServer(String webapp, Configuration conf) in createServer()
157 return new HttpServer.Builder().setName(webapp).addEndpoint( in localServerBuilder()
183 HttpServer server = createTestServer(); in createAndStartTestServer()
193 public static void stop(HttpServer server) throws Exception { in stop()
[all …]

12345678910>>...74