Home
last modified time | relevance | path

Searched refs:socket (Results 1 – 25 of 50) sorted by last modified time

12

/plugin/linkback/
H A Dhttp.php111 // open socket
112 $socket = @ fsockopen($server, $port, $errno, $errstr, $this->timeout);
113 if (!$socket) {
119 stream_set_blocking($socket, 0);
131 fputs($socket, $request);
132 // read headers from socket
140 if (feof($socket)) {
141 $this->error = 'Premature End of File (socket)';
144 $r_headers .= fread($socket, 1); #FIXME read full lines here?
210 if (feof($socket)) {
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/
H A DCHANGELOG.md125 - cURL is prefered over socket when downloading images.
/plugin/upgrade/HTTP/
H A DHTTPClient.php254 $socket = null;
257 $socket = self::$connections[$connectionId];
259 if (is_null($socket) || feof($socket)) {
261 // open socket
262 $socket = @fsockopen($server,$port,$errno, $errstr, $this->timeout);
263 if (!$socket){
271 if($this->ssltunnel($socket, $request_url)){
280 fclose($socket);
286 self::$connections[$connectionId] = $socket;
518 ssltunnel(& $socket, & $requesturl) global() argument
580 sendData($socket, $data, $message) global() argument
625 readData($socket, $nbytes, $message, $ignore_eof = false) global() argument
675 readLine($socket, $message) global() argument
[all...]
/plugin/elasticsearch/vendor/nyholm/dsn/
H A DREADME.md38 memcached:///var/local/run/memcached.socket?weight=25
261 - scheme:///var/local/run/memcached.socket?weight=25
262 - scheme://user:pass@/var/local/run/memcached.socket?weight=25
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DNodesNamespace.asciidoc39 $params['ignore_idle_threads'] = (boolean) Don't show threads that are in known-idle places, such as waiting on a socket select or pulling from an empty task queue (default: true)
/plugin/authgooglesheets/vendor/monolog/monolog/
H A DCHANGELOG.md59 …Added support for unix sockets in SyslogUdpHandler (set $port to 0 to make the $host a unix socket)
303 * Added FluentdFormatter for the Fluentd unix socket protocol
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/
H A DSyslogUdpHandler.php39 protected $socket; variable in Monolog\\Handler\\SyslogUdpHandler
67 $this->socket = new UdpSocket($host, $port);
77 $this->socket->write($line, $header);
83 $this->socket->close();
144 public function setSocket(UdpSocket $socket): self argument
146 $this->socket = $socket;
/plugin/authgooglesheets/vendor/guzzlehttp/promises/
H A DREADME.md306 // a socket, cancel a database query, etc...)
/plugin/authgooglesheets/vendor/monolog/monolog/src/Monolog/Handler/SyslogUdp/
H A DUdpSocket.php26 protected $socket; variable in Monolog\\Handler\\SyslogUdp\\UdpSocket
39 $this->socket = socket_create($domain, SOCK_DGRAM, $protocol) ?: null;
54 if (is_resource($this->socket) || $this->socket instanceof Socket) {
55 socket_close($this->socket);
56 $this->socket = null;
62 if (!is_resource($this->socket) && !$this->socket instanceof Socket) {
65 socket_sendto($this->socket, $chunk, strlen($chunk), $flags = 0, $this->ip, $this->port);
/plugin/gemini/
H A Dcli.php87 $socket = stream_socket_server(
94 if ($socket === false) throw new \splitbrain\phpcli\Exception($errstr, $errno);
107 $conn = stream_socket_accept($socket, -1, $peername);
/plugin/pureldap/
H A Dcomposer.lock85 "freedsx/socket": "^0.5.2",
187 "name": "freedsx/socket",
229 "description": "A simple socket library for FreeDSx",
/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/Queue/
H A DMessageQueue.php18 * Used to retrieve Messages/PDUs from a socket.
27 protected $socket; variable in FreeDSx\\Socket\\Queue\\MessageQueue
40 * @param Socket $socket
42 public function __construct(Socket $socket) argument
44 $this->socket = $socket;
88 $bytes = $this->socket->read();
134 if ($this->toConsume === '' && ($peek = $this->socket->read(false)) !== false) {
H A DAsn1MessageQueue.php37 * @param Socket $socket
41 public function __construct(Socket $socket, EncoderInterface $encoder, ?string $pduClass = null) argument
52 parent::__construct($socket);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DLdapQueue.php47 protected $socket;
54 public function __construct(Socket $socket, EncoderInterface $encoder = null)
56 parent::__construct($socket, $encoder ?? new LdapEncoder());
60 * Encrypt messages sent by the socket for the queue.
67 $this->socket->block(true);
68 $this->socket->encrypt(true);
69 $this->socket->block(false);
79 return ($this->socket->isConnected() && $this->socket->isEncrypted());
83 * Cleanly close the socket an
43 protected $socket; global() variable in FreeDSx\\Ldap\\Protocol\\LdapQueue
50 __construct(Socket $socket, EncoderInterface $encoder = null) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/Queue/
H A DClientQueue.php115 $this->socket = $this->socketPool->connect();
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Server/ServerRunner/
H A DPcntlServerRunner.php150 $socket = $childProcess->getSocket();
151 $this->server->removeClient($socket);
152 $socket->close();
165 * Accept clients from the socket server in a loop with a timeout. This lets us to periodically check existing
176 $socket = $this->server->accept(self::SOCKET_ACCEPT_TIMEOUT);
179 if ($socket) {
184 $socket->close();
191 if ($socket === null) {
207 $socket,
214 $socket
[all...]
/plugin/pureldap/vendor/freedsx/socket/
H A DREADME.md2 A simple socket library for use in other FreeDSx libraries.
/plugin/pureldap/vendor/freedsx/socket/src/FreeDSx/Socket/
H A DSocket.php16 * Represents a generic socket.
39 protected $socket;
103 $this->socket = $resource;
112 if ($this->socket !== null) {
125 \stream_set_blocking($this->socket, $block);
126 while (\strlen((string) ($buffer = \fread($this->socket, $this->options['buffer_size']))) > 0) {
130 \stream_set_blocking($this->socket, false);
133 \stream_set_blocking($this->socket, true);
144 @\fwrite($this->socket, $data);
155 \stream_set_blocking($this->socket,
38 protected $socket; global() variable in FreeDSx\\Socket\\Socket
[all...]
H A DSocketServer.php16 * TCP socket server to accept client connections.
71 * Create the socket server and bind to a specific port to listen for clients.
92 throw new ConnectionException('The port must be set if not using a unix based socket.');
100 $socket = @\stream_socket_server(
107 if ($socket === false) {
109 'Unable to open %s socket (%s): %s',
115 $this->socket = $socket;
126 $socket = @\stream_socket_accept($this->socket,
124 removeClient(Socket $socket) global() argument
[all...]
/plugin/passpolicy/
H A Dwords.txt3307 socket
/plugin/diagramsnet/lib/js/diagramly/
H A DP2PCollab.js3 socket = io(App.SOCKET_IO_SRV);
32 socket.emit('message', msg);
128 socket.on('message', processMsg);
143 socket.emit('sendSignal', {to: id, from: myClientId, signal: data});
160 socket.emit('movedToP2P', '');
176 socket.on('clientsList', function(data)
186 socket.on('signal', function(data)
203 socket.on('newClient', function(clientId)
211 socket.emit('join', {name: channelId});
/plugin/diagramsnet/lib/WEB-INF/lib/
H A Dhttpcore-4.4.9.jarMETA-INF/MANIFEST.MF META-INF/ org/ org/apache/ org/ ...
H A Dhttpclient-4.5.5.jar ... params/ org/apache/http/conn/socket/ org/apache/http/conn/ssl ...
/plugin/diagramsnet/lib/js/socket.io/
H A Dsocket.io.min.js6socket=t.socket,e}return e=a,(n=[{key:"onError",value:function(t,e){var n=new Error(t);return n.ty…
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D64.64.js.map1 … 'open',\n 'puts',\n 'read',\n 'seek',\n 'socket',\n 'tell',…

12