-
Notifications
You must be signed in to change notification settings - Fork 0
/
implementation-comparison.shtml
155 lines (155 loc) · 3.37 KB
/
implementation-comparison.shtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE HTML PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>USOCKET</title>
<link rel="stylesheet" type="text/css" href="style.css">
<meta http-equiv="Content-Type"
content="text/html; charset=ISO-8859-1">
</head>
<body>
<div class="header">
<h1>USOCKET</h1>
</div>
<h2>Supported implementations comparison</h2>
<p>Different projects aim at providing TCP/IP sockets portably
across Common Lisp implementations. The table below summarizes
the state of several of these libraries.</p>
<table>
<caption>Supported implementations comparison</caption> <thead><tr>
<th>Implementation</th>
<th>trivial-sockets</th>
<th>ACL-COMPAT</th>
<th>s-sysdeps</th>
<th>usocket</th>
<th>kmrcl</th>
<th>IOLib</th>
</tr>
</thead> <tbody>
<tr>
<th>SBCL</th>
<td>yes</td>
<td>yes</td>
<td>yes</td>
<td>yes</td>
<td>yes</td>
<td>yes</td>
</tr>
<tr>
<th>CMUCL</th>
<td>yes</td>
<td>yes</td>
<td>yes</td>
<td>yes</td>
<td>yes</td>
<td>yes</td>
</tr>
<tr style="background-color: rgb(238, 238, 255);">
<th>ArmedBear</th>
<td>yes</td>
<td>no</td>
<td>no</td>
<td>yes</td>
<td>no</td>
<td>no</td>
</tr>
<tr>
<th>clisp</th>
<td>yes</td>
<td>yes</td>
<td>no</td>
<td>yes</td>
<td>yes</td>
<td>yes</td>
</tr>
<tr>
<th>Allegro</th>
<td>yes</td>
<td>not relevant</td>
<td>no</td>
<td>yes</td>
<td>yes</td>
<td>no</td>
</tr>
<tr style="background-color: rgb(238, 238, 255);">
<th>LispWorks</th>
<td>yes</td>
<td>yes</td>
<td>yes</td>
<td>yes</td>
<td>yes</td>
<td>no</td>
</tr>
<tr>
<th>OpenMCL</th>
<td>yes</td>
<td>yes</td>
<td>yes</td>
<td>yes</td>
<td>yes</td>
<td>no</td>
</tr>
<tr>
<th>ECL</th>
<td>no</td>
<td>no</td>
<td>no</td>
<td>yes</td>
<td>no</td>
<td>no</td>
</tr>
<tr style="background-color: rgb(238, 238, 255);">
<th>Scieneer</th>
<td>no</td>
<td>yes</td>
<td>no</td>
<td>yes</td>
<td>no</td>
<td>no</td>
</tr>
<tr>
<th>GCL</th>
<td>no</td>
<td>no</td>
<td>no</td>
<td>no (to come)</td>
<td>no</td>
<td>no</td>
</tr>
<tr>
<th>Corman</th>
<td>no</td>
<td>yes</td>
<td>no</td>
<td>no (to come)</td>
<td>no</td>
<td>no</td>
</tr>
<tr>
<th>Digitool MCL</th>
<td>no</td>
<td>no</td>
<td>no</td>
<td style="color: rgb(255, 0, 0);">yes</td>
<td>no</td>
<td>no</td>
</tr>
<tr style="background-color: rgb(238, 255, 238);">
<th>Total #</th>
<td>8</td>
<td>7(+1)</td>
<td>4</td>
<td style="color: rgb(255, 0, 0);">10</td>
<td>6</td>
<td>3</td>
</tr>
</tbody>
</table>
<hr>
<div style="float: left; font-size: x-small; font-weight: bold;">Back
to <a href="http://common-lisp.net/">Common-lisp.net</a>.
</div>
<div class="check" style="float: right;"> <a
href="http://validator.w3.org/check/referer">Valid XHTML 1.0 Strict</a>
</div>
</body>
</html>