Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.188.73.229
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
python-pycurl-7.19.0 /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
test.py
1.91
KB
-rw-r--r--
2007-04-10 13:25
test_cb.py
693
B
-rw-r--r--
2003-04-21 18:46
test_debug.py
340
B
-rw-r--r--
2003-04-21 18:46
test_ftp.py
289
B
-rw-r--r--
2006-08-24 07:36
test_getinfo.py
1.39
KB
-rw-r--r--
2003-05-01 19:35
test_gtk.py
2.67
KB
-rw-r--r--
2005-03-30 12:05
test_internals.py
5.48
KB
-rw-r--r--
2016-11-05 15:10
test_memleak.py
1.1
KB
-rw-r--r--
2003-05-01 16:48
test_multi.py
676
B
-rw-r--r--
2005-03-11 13:24
test_multi2.py
1.71
KB
-rw-r--r--
2007-04-10 13:26
test_multi3.py
2.02
KB
-rw-r--r--
2005-03-11 13:24
test_multi4.py
1.37
KB
-rw-r--r--
2005-03-11 13:24
test_multi5.py
1.44
KB
-rw-r--r--
2005-03-11 13:24
test_multi6.py
1.5
KB
-rw-r--r--
2005-03-11 13:24
test_multi_socket.py
1.88
KB
-rw-r--r--
2006-11-10 15:03
test_multi_socket_select.py
2.39
KB
-rw-r--r--
2008-06-11 18:11
test_multi_timer.py
1.71
KB
-rw-r--r--
2006-11-10 12:25
test_multi_vs_thread.py
5.64
KB
-rw-r--r--
2005-04-12 03:39
test_post.py
589
B
-rw-r--r--
2008-08-05 20:43
test_post2.py
535
B
-rw-r--r--
2005-03-03 10:00
test_post3.py
804
B
-rw-r--r--
2004-06-21 11:24
test_reset.py
2.19
KB
-rw-r--r--
2016-11-05 15:10
test_share.py
714
B
-rw-r--r--
2006-06-13 19:04
test_socketopen.py
440
B
-rw-r--r--
2008-08-22 17:14
test_stringio.py
473
B
-rw-r--r--
2003-04-21 18:46
test_write_abort.py
663
B
-rw-r--r--
2016-11-05 15:10
test_xmlrpc.py
744
B
-rw-r--r--
2003-04-21 18:46
util.py
949
B
-rw-r--r--
2003-04-21 18:46
util.pyc
1004
B
-rw-r--r--
2016-11-05 15:10
Save
Rename
#! /usr/bin/env python # -*- coding: iso-8859-1 -*- # vi:ts=4:et # $Id: test_multi_socket_select.py,v 1.1 2008/06/11 18:11:46 kjetilja Exp $ import os, sys try: from cStringIO import StringIO except ImportError: from StringIO import StringIO import pycurl import select sockets = set() timeout = 0 urls = ( "http://curl.haxx.se", "http://www.python.org", "http://pycurl.sourceforge.net", ) # Read list of URIs from file specified on commandline try: urls = open(sys.argv[1], "rb").readlines() except IndexError: # No file was specified pass # timer callback def timer(msecs): global timeout timeout = msecs print 'Timer callback msecs:', msecs # socket callback def socket(event, socket, multi, data): if event == pycurl.POLL_REMOVE: print "Remove Socket %d"%socket sockets.remove(socket) else: if socket not in sockets: print "Add socket %d"%socket sockets.add(socket) print event, socket, multi, data # init m = pycurl.CurlMulti() m.setopt(pycurl.M_PIPELINING, 1) m.setopt(pycurl.M_TIMERFUNCTION, timer) m.setopt(pycurl.M_SOCKETFUNCTION, socket) m.handles = [] for url in urls: c = pycurl.Curl() # save info in standard Python attributes c.url = url c.body = StringIO() c.http_code = -1 m.handles.append(c) # pycurl API calls c.setopt(c.URL, c.url) c.setopt(c.WRITEFUNCTION, c.body.write) m.add_handle(c) # get data num_handles = len(m.handles) while (pycurl.E_CALL_MULTI_PERFORM==m.socket_all()[0]): pass timeout = m.timeout() while True: (rr, wr, er) = select.select(sockets,sockets,sockets,timeout/1000.0) socketSet = set(rr+wr+er) if socketSet: for s in socketSet: while True: (ret,running) = m.socket_action(s,0) if ret!=pycurl.E_CALL_MULTI_PERFORM: break else: (ret,running) = m.socket_action(pycurl.SOCKET_TIMEOUT,0) if running==0: break # close handles for c in m.handles: # save info in standard Python attributes c.http_code = c.getinfo(c.HTTP_CODE) # pycurl API calls m.remove_handle(c) c.close() m.close() # print result for c in m.handles: data = c.body.getvalue() if 0: print "**********", c.url, "**********" print data else: print "%-53s http_code %3d, %6d bytes" % (c.url, c.http_code, len(data))