16 lines
538 B
PHP

<?php
class AuthCmd
{
//AUTH_NO_CMD = 0xFF,
const AUTH_LOGON_CHALLENGE = 0x00;
const AUTH_LOGON_PROOF = 0x01;
//AUTH_RECONNECT_CHALLENGE = 0x02,
//AUTH_RECONNECT_PROOF = 0x03,
//update srv =4
const REALM_LIST = 0x10;
const XFER_INITIATE = 0x30;
const XFER_DATA = 0x31;
const XFER_ACCEPT = 0x32;
const XFER_RESUME = 0x33;
const XFER_CANCEL = 0x34;
};