码迷,mamicode.com
首页 > 编程语言 > 详细

[原创] python udt4 for windows sendfile.py

时间:2017-10-13 00:34:32      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:pytho   target   ref   end   zip   nts   .com   types   targe   

#coding: utf-8

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


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)
        udt_sendfile(clientfd)
        

    
    
    

udt4py下载

[原创] python udt4 for windows sendfile.py

标签:pytho   target   ref   end   zip   nts   .com   types   targe   

原文地址:http://www.cnblogs.com/tinyos/p/7658536.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!