当前位置: 首页>>代码示例>>PHP>>正文


PHP Packet::encode方法代码示例

本文整理汇总了PHP中raklib\protocol\Packet::encode方法的典型用法代码示例。如果您正苦于以下问题:PHP Packet::encode方法的具体用法?PHP Packet::encode怎么用?PHP Packet::encode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在raklib\protocol\Packet的用法示例。


在下文中一共展示了Packet::encode方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: encode

 public function encode()
 {
     parent::encode();
     $this->buffer .= Binary::writeLong($this->clientID);
     $this->buffer .= Binary::writeLong($this->session);
     $this->buffer .= "";
 }
开发者ID:Hydreon,项目名称:PMSoft238,代码行数:7,代码来源:CLIENT_CONNECT_DataPacket.php

示例2: encode

 public function encode()
 {
     parent::encode();
     $this->buffer .= RakLib::MAGIC;
     $this->buffer .= chr($this->protocol);
     $this->buffer .= str_repeat(chr(0x0), $this->mtuSize - 18);
 }
开发者ID:orlando092,项目名称:ImagicalMine,代码行数:7,代码来源:OPEN_CONNECTION_REQUEST_1.php

示例3: encode

 public function encode()
 {
     parent::encode();
     $this->buffer .= \pack("NN", $this->clientID >> 32, $this->clientID & 0xffffffff);
     $this->buffer .= \pack("NN", $this->sendPing >> 32, $this->sendPing & 0xffffffff);
     $this->buffer .= \chr($this->useSecurity ? 1 : 0);
 }
开发者ID:xpyctum,项目名称:PocketMinePlusPlus,代码行数:7,代码来源:CLIENT_CONNECT_DataPacket__64bit.php

示例4: encode

 public function encode()
 {
     parent::encode();
     $this->put(RakLib::MAGIC);
     $this->putByte($this->protocol);
     $this->put(str_repeat(chr(0x0), $this->mtuSize - 18));
 }
开发者ID:NewDelion,项目名称:PocketMine-0.13.x,代码行数:7,代码来源:OPEN_CONNECTION_REQUEST_1.php

示例5: encode

 public function encode()
 {
     parent::encode();
     $this->buffer .= Binary::writeLong($this->clientID);
     $this->buffer .= Binary::writeLong($this->sendPing);
     $this->buffer .= \chr($this->useSecurity ? 1 : 0);
 }
开发者ID:xpyctum,项目名称:PocketMinePlusPlus,代码行数:7,代码来源:CLIENT_CONNECT_DataPacket__32bit.php

示例6: encode

 public function encode()
 {
     parent::encode();
     $this->buffer .= \substr(\pack("V", $this->seqNumber), 0, -1);
     foreach ($this->packets as $packet) {
         $this->buffer .= $packet instanceof EncapsulatedPacket ? $packet->toBinary() : (string) $packet;
     }
 }
开发者ID:TylerAndrew,项目名称:Steadfast2,代码行数:8,代码来源:DataPacket.php

示例7: encode

 public function encode()
 {
     parent::encode();
     $this->buffer .= RakLib::MAGIC;
     $this->putAddress($this->serverAddress, $this->serverPort, 4);
     $this->buffer .= \pack("n", $this->mtuSize);
     $this->buffer .= \pack("NN", $this->clientID >> 32, $this->clientID & 0xffffffff);
 }
开发者ID:xpyctum,项目名称:PocketMinePlusPlus,代码行数:8,代码来源:OPEN_CONNECTION_REQUEST_2__64bit.php

示例8: encode

 public function encode()
 {
     parent::encode();
     $this->buffer .= \pack("NN", $this->pingID >> 32, $this->pingID & 4294967295.0);
     $this->buffer .= \pack("NN", $this->serverID >> 32, $this->serverID & 4294967295.0);
     $this->buffer .= RakLib::MAGIC;
     $this->putString($this->serverName);
 }
开发者ID:ken77731,项目名称:PocketMine-0.13.0,代码行数:8,代码来源:UNCONNECTED_PONG__64bit.php

示例9: encode

 public function encode()
 {
     parent::encode();
     $this->putLong($this->pingID);
     $this->putLong($this->serverID);
     $this->put(RakLib::MAGIC);
     $this->putString($this->serverName);
 }
开发者ID:NewDelion,项目名称:PocketMine-0.13.x,代码行数:8,代码来源:UNCONNECTED_PONG.php

示例10: encode

 public function encode()
 {
     parent::encode();
     $this->put(RakLib::MAGIC);
     $this->putAddress($this->serverAddress, $this->serverPort, 4);
     $this->putShort($this->mtuSize);
     $this->putLong($this->clientID);
 }
开发者ID:ClearSkyTeam,项目名称:ClearSky,代码行数:8,代码来源:OPEN_CONNECTION_REQUEST_2.php

示例11: encode

 public function encode()
 {
     parent::encode();
     $this->buffer .= RakLib::MAGIC;
     $this->putAddress($this->serverAddress, $this->serverPort, 4);
     $this->buffer .= \pack("n", $this->mtuSize);
     $this->buffer .= Binary::writeLong($this->clientID);
 }
开发者ID:kakichi,项目名称:ClearSky,代码行数:8,代码来源:OPEN_CONNECTION_REQUEST_2.php

示例12: encode

 public function encode()
 {
     parent::encode();
     $this->buffer .= Binary::writeLong($this->pingID);
     $this->buffer .= Binary::writeLong($this->serverID);
     $this->buffer .= RakLib::MAGIC;
     $this->putString($this->serverName);
 }
开发者ID:kakichi,项目名称:ClearSky,代码行数:8,代码来源:UNCONNECTED_PONG.php

示例13: encode

 public function encode()
 {
     parent::encode();
     $this->put(RakLib::MAGIC);
     $this->putLong($this->serverID);
     $this->putByte(0);
     //Server security
     $this->putShort($this->mtuSize);
 }
开发者ID:iTXTech,项目名称:Genisys,代码行数:9,代码来源:OPEN_CONNECTION_REPLY_1.php

示例14: encode

 public function encode()
 {
     parent::encode();
     $this->buffer .= RakLib::MAGIC;
     $this->buffer .= \pack("NN", $this->serverID >> 32, $this->serverID & 0xffffffff);
     $this->buffer .= \chr(0);
     //Server security
     $this->buffer .= \pack("n", $this->mtuSize);
 }
开发者ID:xpyctum,项目名称:PocketMinePlusPlus,代码行数:9,代码来源:OPEN_CONNECTION_REPLY_1__64bit.php

示例15: encode

 public function encode()
 {
     parent::encode();
     $this->buffer .= RakLib::MAGIC;
     $this->buffer .= Binary::writeLong($this->serverID);
     $this->buffer .= \chr(0);
     //Server security
     $this->buffer .= \pack("n", $this->mtuSize);
 }
开发者ID:TylerAndrew,项目名称:Steadfast2,代码行数:9,代码来源:OPEN_CONNECTION_REPLY_1.php


注:本文中的raklib\protocol\Packet::encode方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。