2017-09-14 19:34:18 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Amp\Process\Internal\Windows;
|
|
|
|
|
2017-11-25 02:08:30 +01:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
* @codeCoverageIgnore Windows only.
|
|
|
|
*/
|
2017-09-17 17:58:05 +02:00
|
|
|
final class HandshakeStatus {
|
2017-09-14 19:34:18 +02:00
|
|
|
const SUCCESS = 0;
|
|
|
|
const SIGNAL_UNEXPECTED = 0x01;
|
|
|
|
const INVALID_STREAM_ID = 0x02;
|
|
|
|
const INVALID_PROCESS_ID = 0x03;
|
|
|
|
const DUPLICATE_STREAM_ID = 0x04;
|
|
|
|
const INVALID_CLIENT_TOKEN = 0x05;
|
|
|
|
|
2017-09-17 17:58:05 +02:00
|
|
|
private function __construct() {
|
|
|
|
// empty to prevent instances of this class
|
|
|
|
}
|
2017-09-14 19:34:18 +02:00
|
|
|
}
|