Files
proxmox-selfservice/qa-tool/htdocs/oidc/phpseclib/Net/SSH2/ChannelConnectionFailureReason.php
Sven Steinert fce31ebcd7 Viel neues
2026-04-30 12:06:00 +02:00

17 lines
306 B
PHP

<?php
declare(strict_types=1);
namespace phpseclib3\Net\SSH2;
/**
* @internal
*/
abstract class ChannelConnectionFailureReason
{
public const ADMINISTRATIVELY_PROHIBITED = 1;
public const CONNECT_FAILED = 2;
public const UNKNOWN_CHANNEL_TYPE = 3;
public const RESOURCE_SHORTAGE = 4;
}