60 lines
1.8 KiB
HTML
60 lines
1.8 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
|
"http://www.w3.org/TR/html4/loose.dtd">
|
|
<html lang="en"><head><title>User's Guide:i2p.select - Wikipedia</title>
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
|
<meta name="robots" content="index,follow">
|
|
<link rel="shortcut icon" href="/favicon.ico">
|
|
<style type='text/css'><!--
|
|
/*/*/
|
|
a.new, #quickbar a.new { color: #CC2200; }
|
|
#quickbar { position: absolute; top: 4px; left: 4px; border-right: 1px solid gray; }
|
|
#article { margin-left: 152px; margin-right: 4px; }
|
|
/* */
|
|
//--></style>
|
|
</head>
|
|
|
|
<body bgcolor='#FFFFFF' onload=''>
|
|
<h1 class='pagetitle'>User's Guide:i2p.select</h1><p class='subtitle'>From Python-I2P.
|
|
|
|
|
|
<div class='bodytext'>
|
|
Module <code >i2p.select</code > emulates the Python module <code >select</code >.
|
|
|
|
|
|
<p>
|
|
With this module, a program can perform select and poll commands on traditional and I2P sockets.
|
|
|
|
<p>
|
|
<strong>poll</strong>()
|
|
<ul >
|
|
|
|
<pre> Returns a polling object. Works on SAM sockets and Python sockets.
|
|
See <a href='http://www.python.org/doc/current/lib/module-select.html' class='printable' title="http://www.python.org/doc/current/lib/module-select.html">select.poll()</a> in the Python library for more information.
|
|
</pre>
|
|
</ul >
|
|
|
|
<p>
|
|
<strong>select</strong>(readlist, writelist, errlist, timeout=None)
|
|
<ul >
|
|
|
|
<pre> Performs a select call. Works on SAM sockets and Python sockets.
|
|
See <a href='http://www.python.org/doc/current/lib/module-select.html' class='printable' title="http://www.python.org/doc/current/lib/module-select.html">select.select()</a> in the Python library for more information.
|
|
</pre>
|
|
</ul >
|
|
|
|
<p>
|
|
<strong>Polling flags</strong>
|
|
|
|
<ul ><pre>
|
|
POLLIN = 1
|
|
POLLOUT = 4
|
|
POLLERR = 8
|
|
POLLHUP = 16
|
|
POLLNVAL = 32
|
|
POLLPRI = 1
|
|
</pre>
|
|
</ul >
|
|
|
|
<p>
|
|
</div>
|
|
</body></html> |