blob: 19db24a8823f7ef00317df36261c4327068f0812 [file] [log] [blame]
Andy Greena35c86f2013-01-31 10:16:44 +08001Changelog
2---------
3
Andy Green7b405452013-02-01 10:50:15 +08004(development since 1.1....)
5
6User api additions
7------------------
8
9 - lws_get_library_version() returns a const char * with a string like
10 "1.1 9e7f737", representing the library version from configure.ac
11 and the git HEAD hash the library was built from
12
Andy Greena47865f2013-02-10 09:39:47 +080013 - TCP Keepalive can now optionally be applied to all lws sockets, on Linux
14 also with controllable timeout, number of probes and probe interval.
15 (On BSD type OS, you can only use system default settings for the
16 timing and retries, although enabling it is supported by setting
17 ka_time to nonzero, the exact value has no meaning.)
18 This enables detection of idle connections which are logically okay,
19 but are in fact dead, due to network connectivity issues at the server,
Andy Greena690cd02013-02-09 12:25:31 +080020 client, or any intermediary. By default it's not enabled, but you
21 can enable it by setting a non-zero timeout (in seconds) at the new
22 ka_time member at context creation time.
23
Andy Greena7109e62013-02-11 12:05:54 +080024 - Two new optional user callbacks added, LWS_CALLBACK_PROTOCOL_DESTROY which
25 is called one-time per protocol as the context is being destroyed, and
26 LWS_CALLBACK_PROTOCOL_INIT which is called when the context is created
27 and the protocols are added, again it's a one-time affair.
28 This lets you manage per-protocol allocations properly including
29 cleaning up after yourself when the server goes down.
Andy Green7b405452013-02-01 10:50:15 +080030
Andy Greened334462013-02-07 21:14:33 +080031User api changes
32----------------
33
Andy Green1b265272013-02-09 14:01:09 +080034 - libwebsocket_create_context() has changed from taking a ton of parameters
35 to just taking a pointer to a struct containing the parameters. The
36 struct lws_context_creation_info is in libwebsockets.h, the members
37 are in the same order as when they were parameters to the call
38 previously. The test apps are all updated accordingly so you can
39 see example code there.
40
Andy Greened334462013-02-07 21:14:33 +080041 - Header tokens are now deleted after the websocket connection is
Andy Green54495112013-02-06 21:10:16 +090042 established. Not just the header data is saved, but the pointer and
43 length array is also removed from (union) scope saving several hundred
44 bytes per connection once it is established
45
46 - struct libwebsocket_protocols has a new member rx_buffer_size, this
47 controls rx buffer size per connection of that protocol now. Sources
48 for apps built against older versions of the library won't declare
49 this in their protocols, defaulting it to 0. Zero buffer is legal,
50 it causes a default buffer to be allocated (currently 4096)
51
52 If you want to receive only atomic frames in your user callback, you
53 should set this to greater than your largest frame size. If a frame
54 comes that exceeds that, no error occurs but the callback happens as
55 soon as the buffer limit is reached, and again if it is reached again
56 or the frame completes. You can detect that has happened by seeing
57 there is still frame content pending using
58 libwebsockets_remaining_packet_payload()
59
60 By correctly setting this, you can save a lot of memory when your
61 protocol has small frames (see the test server and client sources).
62
Andy Green16ab3182013-02-10 18:02:31 +080063 - LWS_MAX_HEADER_LEN now defaults to 1024 and is the total amount of known
64 header payload lws can cope with, that includes the GET URL, origin
65 etc. Headers not understood by lws are ignored and their payload
66 not included in this.
67
Andy Green54495112013-02-06 21:10:16 +090068
69User api removals
70-----------------
71
Andy Green16ab3182013-02-10 18:02:31 +080072 - The configuration-time option MAX_USER_RX_BUFFER has been replaced by a
73 buffer size chosen per-protocol. For compatibility, there's a default
74 of 4096 rx buffer, but user code should set the appropriate size for
75 the protocol frames.
76
77 - LWS_INITIAL_HDR_ALLOC and LWS_ADDITIONAL_HDR_ALLOC are no longer needed
78 and have been removed. There's a new header management scheme that
79 handles them in a much more compact way.
Andy Greened334462013-02-07 21:14:33 +080080
Andy Green70edd6f2013-02-12 10:15:25 +080081 - libwebsockets_hangup_on_client() is removed. If you want to close the
82 connection you must do so from the user callback and by returning
83 -1 from there.
84
Andy Greened334462013-02-07 21:14:33 +080085
Andy Greendf60b0c2013-02-06 19:57:12 +090086New features
87------------
88
Andy Green9b09dc02013-02-08 12:48:36 +080089 - Cmake project file added, aimed initially at Windows support: this replaces
Andy Green16ab3182013-02-10 18:02:31 +080090 the visual studio project files that were in the tree until now.
Andy Greendf60b0c2013-02-06 19:57:12 +090091
Andy Green9b09dc02013-02-08 12:48:36 +080092 - PATH_MAX or MAX_PATH no longer needed
Andy Greendf60b0c2013-02-06 19:57:12 +090093
Andy Green54495112013-02-06 21:10:16 +090094 - cutomizable frame rx buffer size by protocol
95
Andy Greena3957ef2013-02-11 09:31:43 +080096 - By default debug is enabled and the library is built for -O0 -g to faclitate
97 that. Use --disable-debug configure option to build instead with -O4
98 and no -g (debug info), obviously providing best performance and
99 reduced binary size.
Andy Green7b405452013-02-01 10:50:15 +0800100
Andy Green895d56d2013-02-11 09:32:53 +0800101 - 1.0 introduced some code to try to not deflate small frames, however this
102 seems to break when confronted with a mixture of frames above and
103 below the threshold, so it's removed. Veto the compression extension
104 in your user callback if you will typically have very small frames.
105
Andy Green16ab3182013-02-10 18:02:31 +0800106 - There are many memory usage improvements, both a reduction in malloc/
107 realloc and architectural changes. A websocket connection now
108 consumes only 296 bytes with SSL or 272 bytes without on x86_64,
109 during header processing an additional 1262 bytes is allocated in a
110 single malloc, but is freed when the websocket connection starts.
111 The RX frame buffer defined by the protocol in user
112 code is also allocated per connection, this represents the largest
113 frame you can receive atomically in that protocol.
114
Andy Green895d56d2013-02-11 09:32:53 +0800115
Andy Greenbd1132f2013-01-31 19:53:05 +0800116v1.1-chrome26-firefox18
Andy Greena35c86f2013-01-31 10:16:44 +0800117=======================
118
119Diffstat
120--------
121
122 Makefile.am | 4 +
123 README-test-server | 291 ---
124 README.build | 239 ++
125 README.coding | 138 ++
126 README.rst | 72 -
127 README.test-apps | 272 +++
128 configure.ac | 116 +-
129 lib/Makefile.am | 55 +-
130 lib/base64-decode.c | 5 +-
131 lib/client-handshake.c | 121 +-
132 lib/client-parser.c | 394 ++++
133 lib/client.c | 807 +++++++
134 lib/daemonize.c | 212 ++
135 lib/extension-deflate-frame.c | 132 +-
136 lib/extension-deflate-stream.c | 12 +-
137 lib/extension-x-google-mux.c | 1223 ----------
138 lib/extension-x-google-mux.h | 96 -
139 lib/extension.c | 8 -
140 lib/getifaddrs.c | 271 +++
141 lib/getifaddrs.h | 76 +
142 lib/handshake.c | 582 +----
143 lib/libwebsockets.c | 2493 ++++++---------------
144 lib/libwebsockets.h | 115 +-
145 lib/md5.c | 217 --
146 lib/minilex.c | 440 ++++
147 lib/output.c | 628 ++++++
148 lib/parsers.c | 2016 +++++------------
149 lib/private-libwebsockets.h | 284 +--
150 lib/server-handshake.c | 275 +++
151 lib/server.c | 377 ++++
152 libwebsockets-api-doc.html | 300 +--
153 m4/ignore-me | 2 +
154 test-server/Makefile.am | 111 +-
155 test-server/libwebsockets.org-logo.png | Bin 0 -> 7029 bytes
156 test-server/test-client.c | 45 +-
157 test-server/test-echo.c | 330 +++
158 test-server/test-fraggle.c | 20 +-
159 test-server/test-ping.c | 22 +-
160 test-server/test-server-extpoll.c | 554 -----
161 test-server/test-server.c | 349 ++-
162 test-server/test.html | 3 +-
163 win32port/zlib/ZLib.vcxproj | 749 ++++---
164 win32port/zlib/ZLib.vcxproj.filters | 188 +-
165 win32port/zlib/adler32.c | 348 ++-
166 win32port/zlib/compress.c | 160 +-
167 win32port/zlib/crc32.c | 867 ++++----
168 win32port/zlib/crc32.h | 882 ++++----
169 win32port/zlib/deflate.c | 3799 +++++++++++++++-----------------
170 win32port/zlib/deflate.h | 688 +++---
171 win32port/zlib/gzclose.c | 50 +-
172 win32port/zlib/gzguts.h | 325 ++-
173 win32port/zlib/gzlib.c | 1157 +++++-----
174 win32port/zlib/gzread.c | 1242 ++++++-----
175 win32port/zlib/gzwrite.c | 1096 +++++----
176 win32port/zlib/infback.c | 1272 ++++++-----
177 win32port/zlib/inffast.c | 680 +++---
178 win32port/zlib/inffast.h | 22 +-
179 win32port/zlib/inffixed.h | 188 +-
180 win32port/zlib/inflate.c | 2976 +++++++++++++------------
181 win32port/zlib/inflate.h | 244 +-
182 win32port/zlib/inftrees.c | 636 +++---
183 win32port/zlib/inftrees.h | 124 +-
184 win32port/zlib/trees.c | 2468 +++++++++++----------
185 win32port/zlib/trees.h | 256 +--
186 win32port/zlib/uncompr.c | 118 +-
187 win32port/zlib/zconf.h | 934 ++++----
188 win32port/zlib/zlib.h | 3357 ++++++++++++++--------------
189 win32port/zlib/zutil.c | 642 +++---
190 win32port/zlib/zutil.h | 526 ++---
191 69 files changed, 19556 insertions(+), 20145 deletions(-)
192
193user api changes
194----------------
195
196 - libwebsockets_serve_http_file() now takes a context as first argument
197
198 - libwebsockets_get_peer_addresses() now takes a context and wsi as first
199 two arguments
200
201
202user api additions
203------------------
204
205 - lwsl_...() logging apis, default to stderr but retargetable by user code;
206 may be used also by user code
207
208 - lws_set_log_level() set which logging apis are able to emit (defaults to
209 notice, warn, err severities), optionally set the emit callback
210
211 - lwsl_emit_syslog() helper callback emits to syslog
212
213 - lws_daemonize() helper code that forks the app into a headless daemon
214 properly, maintains a lock file with pid in suitable for sysvinit etc to
215 control lifecycle
216
217 - LWS_CALLBACK_HTTP_FILE_COMPLETION callback added since http file
218 transfer is now asynchronous (see test server code)
219
220 - lws_frame_is_binary() from a wsi pointer, let you know if the received
221 data was sent in BINARY mode
222
223
224user api removals
225-----------------
226
227 - libwebsockets_fork_service_loop() - no longer supported (had intractable problems)
228 arrange your code to act from the user callback instead from same
229 process context as the service loop
230
231 - libwebsockets_broadcast() - use libwebsocket_callback_on_writable[_all_protocol]()
232 instead from same process context as the service loop. See the test apps
233 for examples.
234
235 - x-google-mux() removed until someone wants it
236
237 - pre -v13 (ancient) protocol support removed
238
239
240New features
241------------
242
243 - echo test server and client compatible with echo.websocket.org added
244
245 - many new configure options (see README.build) to reduce footprint of the
246 library to what you actually need, eg, --without-client and
247 --without-server
248
249 - http + websocket server can build to as little as 12K .text for ARM
250
251 - no more MAX_CLIENTS limitation; adapts to support the max number of fds
252 allowed to the process by ulimit, defaults to 1024 on Fedora and
253 Ubuntu. Use ulimit to control this without needing to configure
254 the library. Code here is smaller and faster.
255
256 - adaptive ratio of listen socket to connection socket service allows
257 good behaviour under Apache ab test load. Tested with thousands
258 of simultaneous connections
259
260 - reduction in per-connection memory footprint by moving to a union to hold
261 mutually-exclusive state for the connection
262
263 - robustness: Out of Memory taken care of for all allocation code now
264
265 - internal getifaddrs option if your toolchain lacks it (some uclibc)
266
267 - configurable memory limit for deflate operations
268
269 - improvements in SSL code nonblocking operation, possible hang solved,
270 some SSL operations broken down into pollable states so there is
271 no library blocking, timeout coverage for SSL_connect
272
273 - extpoll test server merged into single test server source
274
275 - robustness: library should deal with all recoverable socket conditions
276
277 - rx flowcontrol for backpressure notification fixed and implmeneted
278 correctly in the test server
279
280 - optimal lexical parser added for header processing; all headers in a
281 single 276-byte state table
282
283 - latency tracking api added (configure --with-latency)
284
285 - Improved in-tree documentation, REAME.build, README.coding,
286 README.test-apps, changelog
287
288 - Many small fixes
289
290
291v1.0-chrome25-firefox17 (6cd1ea9b005933f)