首页 > 移动平台 > 详细

[原创] python udt4 for windows appserver.py

时间:2017-10-13 00:13:00      阅读:454      评论:0      收藏:0      [点我收藏+]
#coding: utf-8

import ctypes as _ctypes
from ctypes import wintypes as _wtypes
import threading
import time
import struct
import os
from udt4py import *

def worker(clientfd):
    print("worker===============")
    while  True:
        buf = udt_recv(clientfd)
        if buf is not None:
            print(buf)
    return


fd = udt_socket()

ret = udt_bind(fd,9000)
if ret < 0:
    print("bind failed")
    os._exit(0)
    
ret = udt_listen(fd)
if ret < 0:
    print("listen failed")
    os._exit(0)
    

print("listen 9000")
while True:
    (clientfd,clienthost,clientservice) = udt_accept(fd)
    if  clientfd >=0 :
        print(clienthost,clientservice)
        t = threading.Thread(target=worker,args=(clientfd,))
        t.start()
        
        

    
    

    

udt4py下载

[原创] python udt4 for windows appserver.py

原文:http://www.cnblogs.com/tinyos/p/7658525.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!