本文整理汇总了Python中XML.set_ip_client方法的典型用法代码示例。如果您正苦于以下问题:Python XML.set_ip_client方法的具体用法?Python XML.set_ip_client怎么用?Python XML.set_ip_client使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类XML
的用法示例。
在下文中一共展示了XML.set_ip_client方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Save
# 需要导入模块: import XML [as 别名]
# 或者: from XML import set_ip_client [as 别名]
thread = Save(xml)
thread.start()
def save_data():
xml.write()
print 'saved'
while True:
try:
d = s.recvfrom(1024)
data = d[0].split()
addr = d[1]
if addr[0] != current_ip:
current_ip = str(addr[0])
xml.set_ip_client(current_ip)
sooper.set_connection(current_ip, current_port)
print 'New ip: ' + current_ip
if data:
print 'Message received: ' + str(d[0])
if data[0] == 'Connection':
current_port = int(addr[1])
xml.set_port_client(str(current_port))
sooper.set_connection(current_ip, current_port)
print 'New port: ' + str(current_port)
elif data[0] == 'Set_All':
for i in range(0, 5):