mirror of
http://124.126.16.154:8888/singularity/HyperfDevelopmentKitCore.git
synced 2026-01-15 05:35:09 +08:00
26 lines
557 B
PHP
26 lines
557 B
PHP
<?php
|
|
/**
|
|
* RFC4559.php@hyperf-development-kit
|
|
*
|
|
* @author 李东云<dongyun.li@luxcreo.cn>
|
|
* Powered by PhpStorm
|
|
* Created on 2022/4/28
|
|
*/
|
|
|
|
namespace Singularity\HDK\Utils\Enumerations\Http\Header\RFCs;
|
|
|
|
/**
|
|
* Singularity\HyperfDevelopmentKit\Utils\Enumerations\Http\RFCs\RFC4559@hyperf-development-kit
|
|
*
|
|
* @author 李东云<dongyun.li@luxcreo.cn>
|
|
* Powered by PhpStorm
|
|
* Created on 2022/4/28
|
|
*/
|
|
interface RFC4559
|
|
{
|
|
/**
|
|
* @link https://www.ietf.org/rfc/rfc4559.txt RFC 4559
|
|
*/
|
|
public const NEGOTIATE_NTLM = 'Negotiate';
|
|
|
|
} |