/civetweb-2.7.6/test/ |
D | page2.lp | 49 -- Print connect function 50 print_if_available(connect, "connect function")
|
D | page2.lua | 60 print_if_available(connect, "connect function")
|
/civetweb-2.7.6/ci/test/ |
D | civet.lua | 20 local s = socket.connect('127.0.0.1', civet.port) 33 local s = socket.connect('127.0.0.1', civet.port)
|
/civetweb-2.7.6/examples/multidomain/ |
D | README.md | 7 echo | openssl s_client -showcerts -servername default-domain -connect localhost:443 2>/dev/null | … 9 echo | openssl s_client -showcerts -servername localhost -connect localhost:443 2>/dev/null | opens…
|
/civetweb-2.7.6/docs/api/ |
D | mg_client_options.md | 9 |**`host`**|`const char *`|The hostname or IP address to connect to| 16 The the `mgclient_options` structure contains host and security information to connect as a client …
|
D | mg_connect_websocket_client.md | 14 |**`path`**|`const char *`|The server path to connect to, for example `/app` if you want to connect…
|
D | mg_set_websocket_handler.md | 11 |**`connect_handler`**|`mg_websocket_connect_handler`|Handler called when a connect is signalled|
|
D | mg_connect_client.md | 10 |**`port`**|`int`|The port to connect to on the server|
|
D | mg_set_user_connection_data.md | 26 `const struct mg_connection *` passed to a websocket connect handler (with a
|
/civetweb-2.7.6/src/third_party/duktape-1.5.2/examples/eventloop/ |
D | c_eventloop.js | 157 EventLoop.connect = function(address, port, cb_connected) { class in EventLoop 158 var fd = Socket.connect(address, port);
|
D | ecma_eventloop.js | 342 EventLoop.connect = function(address, port, cb_connected) { class in EventLoop 343 var fd = Socket.connect(address, port);
|
D | client-socket-test.js | 12 EventLoop.connect(HOST, PORT, function (fd) {
|
D | socket.c | 215 rc = connect(sock, (const struct sockaddr *) &sockaddr, (socklen_t) sizeof(sockaddr)); in socket_connect()
|
/civetweb-2.7.6/src/third_party/duktape-1.8.0/examples/eventloop/ |
D | c_eventloop.js | 157 EventLoop.connect = function(address, port, cb_connected) { class in EventLoop 158 var fd = Socket.connect(address, port);
|
D | ecma_eventloop.js | 342 EventLoop.connect = function(address, port, cb_connected) { class in EventLoop 343 var fd = Socket.connect(address, port);
|
D | client-socket-test.js | 12 EventLoop.connect(HOST, PORT, function (fd) {
|
D | socket.c | 215 rc = connect(sock, (const struct sockaddr *) &sockaddr, (socklen_t) sizeof(sockaddr)); in socket_connect()
|
/civetweb-2.7.6/unittest/ |
D | testclient.c | 28 if (connect(sockfd, (const sockaddr *)serv_addr, sizeof(*serv_addr)) < 0) { in connect_to_server()
|
/civetweb-2.7.6/src/third_party/duktape-1.5.2/debugger/ |
D | README.rst | 120 Now connect to the proxy using e.g. telnet:: 124 The proxy will then connect to the target and you can start issuing commands:: 204 You can then connect to localhost:9093 and interact with the proxy.
|
D | duk_debug.js | 1546 this.targetStream.connect(optTargetPort, optTargetHost, function () { 2296 this.targetStream.connect(optTargetPort, optTargetHost, function () {
|
/civetweb-2.7.6/src/third_party/duktape-1.8.0/debugger/ |
D | README.rst | 120 Now connect to the proxy using e.g. telnet:: 124 The proxy will then connect to the target and you can start issuing commands:: 204 You can then connect to localhost:9093 and interact with the proxy.
|
D | duk_debug.js | 1546 this.targetStream.connect(optTargetPort, optTargetHost, function () { 2296 this.targetStream.connect(optTargetPort, optTargetHost, function () {
|
/civetweb-2.7.6/src/ |
D | mod_lua.inl | 291 "invalid internal state in __gc for object created by connect"); 295 return luaL_error(L, "__gc for object created by connect failed"); 300 /* Methods and meta-methods supported by the object returned by connect. 339 L, "connect(host,port,is_ssl): invalid parameter given."); 2147 /* Keep the "connect" method for compatibility, 2157 lua_register(L, "connect", lsp_connect);
|
D | civetweb.c | 8951 conn_ret = connect(*sock, 8958 conn_ret = connect(*sock,
|
/civetweb-2.7.6/docs/ |
D | UserManual.md | 857 connect (function): 862 -- connect() throws an exception on connection error. 864 connect(host, port, use_ssl) 866 -- Example of using connect() interface: 868 local ok, sock = pcall(connect, host, 80, 0)
|