| 1 | <?php |
||
| 13 | class AccessRequestFrame implements MethodFrame, OutgoingFrame |
||
| 14 | { |
||
| 15 | const METHOD_ID = 0x001e000a; |
||
| 16 | |||
| 17 | public $frameChannelId = 0; |
||
| 18 | public $realm = '/data'; // shortstr |
||
| 19 | public $exclusive = false; // bit |
||
| 20 | public $passive = true; // bit |
||
| 21 | public $active = true; // bit |
||
| 22 | public $write = true; // bit |
||
| 23 | public $read = true; // bit |
||
| 24 | |||
| 25 | public static function create( |
||
| 52 | } |
||
| 53 |