Initial Commit
This commit is contained in:
31
dependencies/daverandom/libdns/src/Messages/MessageOpCodes.php
vendored
Normal file
31
dependencies/daverandom/libdns/src/Messages/MessageOpCodes.php
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
declare (strict_types=1);
|
||||
/**
|
||||
* Enumeration of possible message opcodes
|
||||
*
|
||||
* PHP version 5.4
|
||||
*
|
||||
* @category LibDNS
|
||||
* @package Messages
|
||||
* @author Chris Wright <https://github.com/DaveRandom>
|
||||
* @copyright Copyright (c) Chris Wright <https://github.com/DaveRandom>
|
||||
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
||||
* @version 2.0.0
|
||||
*/
|
||||
namespace WP_Ultimo\Dependencies\LibDNS\Messages;
|
||||
|
||||
use WP_Ultimo\Dependencies\LibDNS\Enumeration;
|
||||
/**
|
||||
* Enumeration of possible message types
|
||||
*
|
||||
* @category LibDNS
|
||||
* @package Messages
|
||||
* @author Chris Wright <https://github.com/DaveRandom>
|
||||
*/
|
||||
final class MessageOpCodes extends Enumeration
|
||||
{
|
||||
const QUERY = 0;
|
||||
const IQUERY = 1;
|
||||
const STATUS = 2;
|
||||
}
|
Reference in New Issue
Block a user