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


Python Encoder.client_name方法代码示例

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


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

示例1: connect

# 需要导入模块: from krpc.encoder import Encoder [as 别名]
# 或者: from krpc.encoder.Encoder import client_name [as 别名]
def connect(address=DEFAULT_ADDRESS, rpc_port=DEFAULT_RPC_PORT, stream_port=DEFAULT_STREAM_PORT, name=None):
    """
    Connect to a kRPC server on the specified IP address and port numbers. If
    stream_port is None, does not connect to the stream server.
    Optionally give the kRPC server the supplied name to identify the client (up
    to 32 bytes of UTF-8 encoded text).
    """
    assert rpc_port != stream_port

    # Connect to RPC server
    rpc_connection = Connection(address, rpc_port)
    rpc_connection.connect(retries=10, timeout=0.1)
    rpc_connection.send(Encoder.RPC_HELLO_MESSAGE)
    rpc_connection.send(Encoder.client_name(name))
    client_identifier = rpc_connection.receive(Decoder.GUID_LENGTH)

    # Connect to Stream server
    if stream_port is not None:
        stream_connection = Connection(address, stream_port)
        stream_connection.connect(retries=10, timeout=0.1)
        stream_connection.send(Encoder.STREAM_HELLO_MESSAGE)
        stream_connection.send(client_identifier)
        ok_message = stream_connection.receive(Decoder.OK_LENGTH)
        assert ok_message == Decoder.OK_MESSAGE
    else:
        stream_connection = None

    return Client(rpc_connection, stream_connection)
开发者ID:rosalesr,项目名称:krpc,代码行数:30,代码来源:__init__.py

示例2: test_empty_client_name

# 需要导入模块: from krpc.encoder import Encoder [as 别名]
# 或者: from krpc.encoder.Encoder import client_name [as 别名]
 def test_empty_client_name(self):
     message = Encoder.client_name()
     self.assertEqual (32, len(message))
     self.assertEqual ('00'*32, hexlify(message))
开发者ID:Kerbal007,项目名称:krpc,代码行数:6,代码来源:test_encoder.py

示例3: test_long_client_name

# 需要导入模块: from krpc.encoder import Encoder [as 别名]
# 或者: from krpc.encoder.Encoder import client_name [as 别名]
 def test_long_client_name(self):
     message = Encoder.client_name('a'*33)
     self.assertEqual (32, len(message))
     self.assertEqual ('61'*32, hexlify(message))
开发者ID:Kerbal007,项目名称:krpc,代码行数:6,代码来源:test_encoder.py

示例4: test_client_name

# 需要导入模块: from krpc.encoder import Encoder [as 别名]
# 或者: from krpc.encoder.Encoder import client_name [as 别名]
 def test_client_name(self):
     message = Encoder.client_name('foo')
     self.assertEqual (32, len(message))
     self.assertEqual ('666f6f'+'00'*29, hexlify(message))
开发者ID:Kerbal007,项目名称:krpc,代码行数:6,代码来源:test_encoder.py


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