摘要: def clib_net_host_u16(value): value = int(value) if value < 0 or value > 65535: return 0 return int(struct.unpack('>I', struct.pack('i', value))[0]/65 阅读全文
posted @ 2021-06-09 12:00 张京华 阅读(2178) 评论(1) 推荐(0)