assets
data
dependencies
amphp
amp
byte-stream
cache
dns
hpack
http
http-client
parser
process
lib
Internal
Posix
Windows
Handle.php
HandshakeStatus.php
PendingSocketClient.php
Runner.php
SignalCode.php
SocketConnector.php
ProcessHandle.php
ProcessRunner.php
ProcessStatus.php
Process.php
ProcessException.php
ProcessInputStream.php
ProcessOutputStream.php
StatusError.php
functions.php
serialization
socket
sync
windows-registry
berlindb
composer
daverandom
delight-im
doctrine
guzzlehttp
hashids
ifsnop
jasny
kelunik
league
mexitek
mpdf
myclabs
nesbot
nyholm
pablo-sg-pacheco
paragonie
phpdocumentor
phpseclib
phpstan
psr
rakit
ralouphie
remotelyliving
rpnzl
scssphp
setasign
spatie
stripe
symfony
webmozart
woocommerce
yahnis-elsts
autoload.php
scoper-autoload.php
inc
lang
views
.gitignore
LICENSE
autoload.php
composer.json
constants.php
loco.xml
readme.txt
sunrise.php
uninstall.php
wp-multisite-waas.php
22 lines
464 B
PHP
22 lines
464 B
PHP
<?php
|
|
|
|
namespace WP_Ultimo\Dependencies\Amp\Process\Internal\Windows;
|
|
|
|
/**
|
|
* @internal
|
|
* @codeCoverageIgnore Windows only.
|
|
*/
|
|
final class HandshakeStatus
|
|
{
|
|
const SUCCESS = 0;
|
|
const SIGNAL_UNEXPECTED = 0x1;
|
|
const INVALID_STREAM_ID = 0x2;
|
|
const INVALID_PROCESS_ID = 0x3;
|
|
const DUPLICATE_STREAM_ID = 0x4;
|
|
const INVALID_CLIENT_TOKEN = 0x5;
|
|
private function __construct()
|
|
{
|
|
// empty to prevent instances of this class
|
|
}
|
|
}
|