⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 listen.htm

📁 udt.sdk.4.0,UDP的可靠传输项目UDT(开源),采用了类似TCP的滑动窗口协议,在 udt.sdk.3.2 的基础上作了改进,使适用于网格计算
💻 HTM
字号:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><title> UDT Reference</title><link rel="stylesheet" href="udtdoc.css" type="text/css" /></head><body><div class="ref_head">&nbsp;UDT Reference: Functions</div><h4 class="func_name"><strong>listen</strong></h4><p>The <b>listen</b> method enables a server UDT entity to wait for clients to connect.</p><div class="code">int list(<br />&nbsp; UDTSOCKET <font color="#FFFFFF">u</font><br />&nbsp; int <font color="#FFFFFF">backlog</font><br />);</div><h5>Parameters</h5><dl>  <dt><i>u</i></dt>  <dd>[in] Descriptor identifying the server socket.</dd>  <dt><i>backlog</i></dt>  <dd>[in] Maximum number of pending connections.</dd></dl><h5>Return Value</h5><p>If success, 0 is returned; otherwise, UDT::ERROR is returned and specific error information can be retrieved by <a href="error.htm">getlasterror</a>.</p><table width="100%" border="1" cellpadding="2" cellspacing="0" bordercolor="#CCCCCC">  <tr>    <td width="17%" class="table_headline"><strong>Error Name</strong></td>    <td width="17%" class="table_headline"><strong>Error Code</strong></td>    <td width="83%" class="table_headline"><strong>Comment</strong></td>  </tr>  <tr>    <td>ECONNSOCK</td>    <td>5002</td>    <td><i>u</i> is already connected.</td>  </tr>  <tr>    <td>EINVSOCK</td>    <td>5004</td>    <td><i>u</i> is an invalid socket.</td>  </tr>  <tr>    <td>EUNBOUNDSOCK</td>    <td>5005</td>    <td><i>u</i> is not bound.</td>  </tr>  <tr>    <td>ERDVNOSERV</td>    <td>5007</td>    <td><i>u</i> is in rendezvous mode.</td>  </tr></table><h5>Description</h5><p>The <strong>listen</strong> method lets a UDT socket enter listening state. The socket must call <strong>bind</strong> before a <strong>listen</strong> call. In addition, if the socket is enable for rendezvous mode, neither <strong>listen</strong> nor <strong>accept</strong> can be used on the socket. A UDT socket can call <strong>listen</strong> more than once, in which case only the first call is effective, while all subsequent calls will be ignored if the socket is already in listening state.</p><h5>See Also</h5><p><strong><a href="bind.htm">bind</a>, <a href="accept.htm">accpet</a>, <a href="connect.htm">connect</a></strong></p><p>&nbsp;</p></body></html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -