79 lines
No EOL
4.2 KiB
HTML
79 lines
No EOL
4.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>CLiki: Usocket-UDP</title>
|
|
<link rel="alternate" type="application/atom+xml" title="ATOM feed of edits to current article"
|
|
href="https://www.cliki.net/site/feed/article.atom?title=Usocket-UDP">
|
|
<link rel="stylesheet" href="static/css/style.css">
|
|
<link rel="stylesheet" href="static/css/colorize.css">
|
|
</head>
|
|
|
|
<body>
|
|
<span class="hidden">CLiki - Usocket-UDP</span>
|
|
<div id="content"><div id="content-area"><div id="article-title">Usocket-UDP</div><div id="article">UDP <a href="networking.html" class="category">networking</a> patch for <a href="USOCKET.html" class="category">USOCKET</a>.<p>NOTE: USOCKET 0.5.0 has merged almost all code in USOCKET-UDP except the "Reliable UDP" part.<p>Start from release 1.3 (2008-7-23), we support portable UDP server.<p><h3>Current supported platforms</h3><p><ul>
|
|
<li>
|
|
<a href="LispWorks.html" class="internal">LispWorks</a> (depends on <a href="LispWorks-UDP.html" class="internal">LispWorks-UDP</a> by the same author)
|
|
</li>
|
|
<li>
|
|
<a href="CMUCL.html" class="internal">CMUCL</a>
|
|
</li>
|
|
<li>
|
|
<a href="SBCL.html" class="internal">SBCL</a>
|
|
</li>
|
|
<li>
|
|
<a href="CCL.html" class="internal">Clozure CL</a> (aka OpenMCL)
|
|
</li>
|
|
<li>Allegro CL (start from usocket-udp 1.1)
|
|
</li>
|
|
<li>Scieneer CL (start from usocket-udp 2.3, need a udp-patch from SCL maintainer)
|
|
</li>
|
|
</ul>
|
|
<h3>Release</h3><p>Last release of USOCKET-UDP is 2.6 (<a href="https://common-lisp.net/project/cl-net-snmp/release/usocket-udp_2.6.tar.gz">usocket-udp_2.6.tar.gz</a>) on Sep 24, 2010.<p><h3>API</h3><p><pre>
|
|
socket-connect/udp (host port &key stream element-type local-address local-port)
|
|
|
|
socket-send ((socket datagram-usocket) buffer length &key address port)
|
|
|
|
socket-receive ((socket datagram-usocket) buffer length &key)
|
|
|
|
socket-server (host port function &optional arguments
|
|
&key (element-type '(unsigned-byte 8))
|
|
(timeout 1) (max-buffer-size 65536))
|
|
</pre><p>Contact Chun Tian (<a href="binghe.html" class="internal">binghe</a>) if you need any help on this package.</div></div>
|
|
<div id="footer" class="buttonbar"><ul><li><a href="Usocket-UDP.html">Current version</a></li>
|
|
<li><a href="https://www.cliki.net/site/history?article=Usocket-UDP">History</a></li>
|
|
<li><a href="https://www.cliki.net/site/backlinks?article=Usocket-UDP">Backlinks</a></li><li><a href="https://www.cliki.net/site/edit-article?title=Usocket-UDP&from-revision=3822852202">Edit</a></li><li><a href="https://www.cliki.net/site/edit-article?create=t">Create</a></li></ul></div>
|
|
</div>
|
|
<div id="header-buttons" class="buttonbar">
|
|
<ul>
|
|
<li><a href="https://www.cliki.net/">Home</a></li>
|
|
<li><a href="https://www.cliki.net/site/recent-changes">Recent Changes</a></li>
|
|
<li><a href="CLiki.html">About</a></li>
|
|
<li><a href="Text Formatting.html">Text Formatting</a></li>
|
|
<li><a href="https://www.cliki.net/site/tools">Tools</a></li>
|
|
</ul>
|
|
<div id="search">
|
|
<form action="https://www.cliki.net/site/search">
|
|
<label for="search_query" class="hidden">Search CLiki</label>
|
|
<input type="text" name="query" id="search_query" value="" />
|
|
<input type="submit" value="search" />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div id="pageheader">
|
|
<div id="header">
|
|
<span id="logo">CLiki</span>
|
|
<span id="slogan">the common lisp wiki</span>
|
|
<div id="login"><form method="post" action="https://www.cliki.net/site/login">
|
|
<label for="login_name" class="hidden">Account name</label>
|
|
<input type="text" name="name" id="login_name" class="login_input" />
|
|
<label for= "login_password" class="hidden">Password</label>
|
|
<input type="password" name="password" id="login_password" class="login_input" />
|
|
<input type="submit" name="login" value="login" id="login_submit" /><br />
|
|
<div id="register"><a href="https://www.cliki.net/site/register">register</a></div>
|
|
<input type="submit" name="reset-pw" value="reset password" id="reset_pw" />
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body></html> |