blob: 0a039e9e00855697378bc75c6dc73117f051d1f6 [file] [log] [blame]
Andy Greenf7ee5492011-02-13 09:04:21 +00001<h2>libwebsockets_hangup_on_client - Server calls to terminate client connection</h2>
2<i>void</i>
3<b>libwebsockets_hangup_on_client</b>
Peter Hinz56885f32011-03-02 22:03:47 +00004(<i>struct libwebsocket_context *</i> <b>context</b>,
Andy Greenf7ee5492011-02-13 09:04:21 +00005<i>int</i> <b>fd</b>)
6<h3>Arguments</h3>
7<dl>
Peter Hinz56885f32011-03-02 22:03:47 +00008<dt><b>context</b>
Andy Greenf7ee5492011-02-13 09:04:21 +00009<dd>libwebsockets context
10<dt><b>fd</b>
11<dd>Connection socket descriptor
12</dl>
13<hr>
Andy Green07034092011-02-13 08:37:12 +000014<h2>libwebsockets_get_peer_addresses - Get client address information</h2>
15<i>void</i>
16<b>libwebsockets_get_peer_addresses</b>
17(<i>int</i> <b>fd</b>,
18<i>char *</i> <b>name</b>,
19<i>int</i> <b>name_len</b>,
20<i>char *</i> <b>rip</b>,
21<i>int</i> <b>rip_len</b>)
22<h3>Arguments</h3>
23<dl>
24<dt><b>fd</b>
25<dd>Connection socket descriptor
26<dt><b>name</b>
27<dd>Buffer to take client address name
28<dt><b>name_len</b>
29<dd>Length of client address name buffer
30<dt><b>rip</b>
31<dd>Buffer to take client address IP qotted quad
32<dt><b>rip_len</b>
33<dd>Length of client address IP buffer
34</dl>
35<h3>Description</h3>
36<blockquote>
37This function fills in <tt><b>name</b></tt> and <tt><b>rip</b></tt> with the name and IP of
38the client connected with socket descriptor <tt><b>fd</b></tt>. Names may be
39truncated if there is not enough room. If either cannot be
40determined, they will be returned as valid zero-length strings.
41</blockquote>
42<hr>
Andy Green9f990342011-02-12 11:57:45 +000043<h2>libwebsocket_service_fd - Service polled socket with something waiting</h2>
44<i>int</i>
45<b>libwebsocket_service_fd</b>
Peter Hinz56885f32011-03-02 22:03:47 +000046(<i>struct libwebsocket_context *</i> <b>context</b>,
Andy Green9f990342011-02-12 11:57:45 +000047<i>struct pollfd *</i> <b>pollfd</b>)
48<h3>Arguments</h3>
49<dl>
Peter Hinz56885f32011-03-02 22:03:47 +000050<dt><b>context</b>
Andy Green9f990342011-02-12 11:57:45 +000051<dd>Websocket context
52<dt><b>pollfd</b>
53<dd>The pollfd entry describing the socket fd and which events
54happened.
55</dl>
56<h3>Description</h3>
57<blockquote>
58This function closes any active connections and then frees the
59context. After calling this, any further use of the context is
60undefined.
61</blockquote>
62<hr>
Andy Green6964bb52011-01-23 16:50:33 +000063<h2>libwebsocket_context_destroy - Destroy the websocket context</h2>
64<i>void</i>
65<b>libwebsocket_context_destroy</b>
Peter Hinz56885f32011-03-02 22:03:47 +000066(<i>struct libwebsocket_context *</i> <b>context</b>)
Andy Green6964bb52011-01-23 16:50:33 +000067<h3>Arguments</h3>
68<dl>
Peter Hinz56885f32011-03-02 22:03:47 +000069<dt><b>context</b>
Andy Green6964bb52011-01-23 16:50:33 +000070<dd>Websocket context
71</dl>
72<h3>Description</h3>
73<blockquote>
74This function closes any active connections and then frees the
75context. After calling this, any further use of the context is
76undefined.
77</blockquote>
78<hr>
79<h2>libwebsocket_service - Service any pending websocket activity</h2>
80<i>int</i>
81<b>libwebsocket_service</b>
Peter Hinz56885f32011-03-02 22:03:47 +000082(<i>struct libwebsocket_context *</i> <b>context</b>,
Andy Green6964bb52011-01-23 16:50:33 +000083<i>int</i> <b>timeout_ms</b>)
84<h3>Arguments</h3>
85<dl>
Peter Hinz56885f32011-03-02 22:03:47 +000086<dt><b>context</b>
Andy Green6964bb52011-01-23 16:50:33 +000087<dd>Websocket context
88<dt><b>timeout_ms</b>
89<dd>Timeout for poll; 0 means return immediately if nothing needed
90service otherwise block and service immediately, returning
91after the timeout if nothing needed service.
92</dl>
93<h3>Description</h3>
94<blockquote>
95This function deals with any pending websocket traffic, for three
96kinds of event. It handles these events on both server and client
97types of connection the same.
98<p>
991) Accept new connections to our context's server
100<p>
1012) Perform pending broadcast writes initiated from other forked
102processes (effectively serializing asynchronous broadcasts)
103<p>
1043) Call the receive callback for incoming frame data received by
105server or client connections.
106<p>
107You need to call this service function periodically to all the above
108functions to happen; if your application is single-threaded you can
109just call it in your main event loop.
110<p>
111Alternatively you can fork a new process that asynchronously handles
112calling this service in a loop. In that case you are happy if this
113call blocks your thread until it needs to take care of something and
114would call it with a large nonzero timeout. Your loop then takes no
115CPU while there is nothing happening.
116<p>
117If you are calling it in a single-threaded app, you don't want it to
118wait around blocking other things in your loop from happening, so you
119would call it with a timeout_ms of 0, so it returns immediately if
120nothing is pending, or as soon as it services whatever was pending.
121</blockquote>
122<hr>
Andy Green32375b72011-02-19 08:32:53 +0000123<h2>libwebsocket_callback_on_writable - Request a callback when this socket becomes able to be written to without blocking</h2>
Andy Green90c7cbc2011-01-27 06:26:52 +0000124<i>int</i>
125<b>libwebsocket_callback_on_writable</b>
Peter Hinz56885f32011-03-02 22:03:47 +0000126(<i>struct libwebsocket_context *</i> <b>context</b>,
Andy Green62c54d22011-02-14 09:14:25 +0000127<i>struct libwebsocket *</i> <b>wsi</b>)
Andy Green90c7cbc2011-01-27 06:26:52 +0000128<h3>Arguments</h3>
129<dl>
Peter Hinz56885f32011-03-02 22:03:47 +0000130<dt><b>context</b>
Andy Green32375b72011-02-19 08:32:53 +0000131<dd>libwebsockets context
Andy Green90c7cbc2011-01-27 06:26:52 +0000132<dt><b>wsi</b>
133<dd>Websocket connection instance to get callback for
134</dl>
135<hr>
136<h2>libwebsocket_callback_on_writable_all_protocol - Request a callback for all connections using the given protocol when it becomes possible to write to each socket without blocking in turn.</h2>
137<i>int</i>
138<b>libwebsocket_callback_on_writable_all_protocol</b>
139(<i>const struct libwebsocket_protocols *</i> <b>protocol</b>)
140<h3>Arguments</h3>
141<dl>
142<dt><b>protocol</b>
143<dd>Protocol whose connections will get callbacks
144</dl>
145<hr>
Andy Greenbe93fef2011-02-14 20:25:43 +0000146<h2>libwebsocket_set_timeout - marks the wsi as subject to a timeout</h2>
147<i>void</i>
148<b>libwebsocket_set_timeout</b>
149(<i>struct libwebsocket *</i> <b>wsi</b>,
150<i>enum pending_timeout</i> <b>reason</b>,
151<i>int</i> <b>secs</b>)
152<h3>Arguments</h3>
153<dl>
154<dt><b>wsi</b>
155<dd>Websocket connection instance
156<dt><b>reason</b>
157<dd>timeout reason
158<dt><b>secs</b>
159<dd>how many seconds
160</dl>
161<h3>Description</h3>
162<blockquote>
163<p>
164You will not need this unless you are doing something special
165</blockquote>
166<hr>
Andy Greena6cbece2011-01-27 20:06:03 +0000167<h2>libwebsocket_get_socket_fd - returns the socket file descriptor</h2>
168<i>int</i>
169<b>libwebsocket_get_socket_fd</b>
170(<i>struct libwebsocket *</i> <b>wsi</b>)
171<h3>Arguments</h3>
172<dl>
173<dt><b>wsi</b>
174<dd>Websocket connection instance
175</dl>
176<h3>Description</h3>
177<blockquote>
178<p>
179You will not need this unless you are doing something special
180</blockquote>
181<hr>
Andy Green90c7cbc2011-01-27 06:26:52 +0000182<h2>libwebsocket_rx_flow_control - Enable and disable socket servicing for receieved packets.</h2>
183<i>int</i>
184<b>libwebsocket_rx_flow_control</b>
185(<i>struct libwebsocket *</i> <b>wsi</b>,
186<i>int</i> <b>enable</b>)
187<h3>Arguments</h3>
188<dl>
189<dt><b>wsi</b>
190<dd>Websocket connection instance to get callback for
191<dt><b>enable</b>
192<dd>0 = disable read servicing for this connection, 1 = enable
193</dl>
194<h3>Description</h3>
195<blockquote>
196<p>
197If the output side of a server process becomes choked, this allows flow
198control for the input side.
199</blockquote>
200<hr>
Andy Green2ac5a6f2011-01-28 10:00:18 +0000201<h2>libwebsocket_canonical_hostname - returns this host's hostname</h2>
202<i>const char *</i>
203<b>libwebsocket_canonical_hostname</b>
Peter Hinz56885f32011-03-02 22:03:47 +0000204(<i>struct libwebsocket_context *</i> <b>context</b>)
Andy Green2ac5a6f2011-01-28 10:00:18 +0000205<h3>Arguments</h3>
206<dl>
Peter Hinz56885f32011-03-02 22:03:47 +0000207<dt><b>context</b>
Andy Green2ac5a6f2011-01-28 10:00:18 +0000208<dd>Websocket context
209</dl>
210<h3>Description</h3>
211<blockquote>
212<p>
213This is typically used by client code to fill in the host parameter
214when making a client connection. You can only call it after the context
215has been created.
216</blockquote>
217<hr>
Andy Green4739e5c2011-01-22 12:51:57 +0000218<h2>libwebsocket_create_context - Create the websocket handler</h2>
Andy Greene92cd172011-01-19 13:11:55 +0000219<i>struct libwebsocket_context *</i>
Andy Green4739e5c2011-01-22 12:51:57 +0000220<b>libwebsocket_create_context</b>
Andy Green62a12932010-11-03 11:19:23 +0000221(<i>int</i> <b>port</b>,
Peter Hinz56885f32011-03-02 22:03:47 +0000222<i>const char *</i> <b>interf</b>,
Andy Greenb45993c2010-12-18 15:13:50 +0000223<i>struct libwebsocket_protocols *</i> <b>protocols</b>,
Andy Greend6e09112011-03-05 16:12:15 +0000224<i>struct libwebsocket_extension *</i> <b>extensions</b>,
Andy Green3faa9c72010-11-08 17:03:03 +0000225<i>const char *</i> <b>ssl_cert_filepath</b>,
226<i>const char *</i> <b>ssl_private_key_filepath</b>,
227<i>int</i> <b>gid</b>,
Andy Green8014b292011-01-30 20:57:25 +0000228<i>int</i> <b>uid</b>,
229<i>unsigned int</i> <b>options</b>)
Andy Green62a12932010-11-03 11:19:23 +0000230<h3>Arguments</h3>
231<dl>
232<dt><b>port</b>
Andy Green4739e5c2011-01-22 12:51:57 +0000233<dd>Port to listen on... you can use 0 to suppress listening on
234any port, that's what you want if you are not running a
235websocket server at all but just using it as a client
Peter Hinz56885f32011-03-02 22:03:47 +0000236<dt><b>interf</b>
Andy Green32375b72011-02-19 08:32:53 +0000237<dd>NULL to bind the listen socket to all interfaces, or the
238interface name, eg, "eth2"
Andy Green4f3943a2010-11-12 10:44:16 +0000239<dt><b>protocols</b>
240<dd>Array of structures listing supported protocols and a protocol-
241specific callback for each one. The list is ended with an
242entry that has a NULL callback pointer.
Andy Greenb45993c2010-12-18 15:13:50 +0000243It's not const because we write the owning_server member
Andy Greenc5114822011-03-06 10:29:35 +0000244<dt><b>extensions</b>
245<dd>NULL or array of libwebsocket_extension structs listing the
246extensions this context supports
Andy Green3faa9c72010-11-08 17:03:03 +0000247<dt><b>ssl_cert_filepath</b>
248<dd>If libwebsockets was compiled to use ssl, and you want
249to listen using SSL, set to the filepath to fetch the
250server cert from, otherwise NULL for unencrypted
251<dt><b>ssl_private_key_filepath</b>
252<dd>filepath to private key if wanting SSL mode,
253else ignored
254<dt><b>gid</b>
255<dd>group id to change to after setting listen socket, or -1.
256<dt><b>uid</b>
257<dd>user id to change to after setting listen socket, or -1.
Andy Greenbfb051f2011-02-09 08:49:14 +0000258<dt><b>options</b>
259<dd>0, or LWS_SERVER_OPTION_DEFEAT_CLIENT_MASK
Andy Green62a12932010-11-03 11:19:23 +0000260</dl>
261<h3>Description</h3>
262<blockquote>
Andy Green47943ae2010-11-12 11:15:49 +0000263This function creates the listening socket and takes care
Andy Green62a12932010-11-03 11:19:23 +0000264of all initialization in one step.
265<p>
Andy Greene92cd172011-01-19 13:11:55 +0000266After initialization, it returns a struct libwebsocket_context * that
267represents this server. After calling, user code needs to take care
268of calling <b>libwebsocket_service</b> with the context pointer to get the
269server's sockets serviced. This can be done in the same process context
270or a forked process, or another thread,
Andy Green47943ae2010-11-12 11:15:49 +0000271<p>
272The protocol callback functions are called for a handful of events
273including http requests coming in, websocket connections becoming
Andy Green62a12932010-11-03 11:19:23 +0000274established, and data arriving; it's also called periodically to allow
275async transmission.
276<p>
Andy Green47943ae2010-11-12 11:15:49 +0000277HTTP requests are sent always to the FIRST protocol in <tt><b>protocol</b></tt>, since
278at that time websocket protocol has not been negotiated. Other
279protocols after the first one never see any HTTP callack activity.
280<p>
Andy Green62a12932010-11-03 11:19:23 +0000281The server created is a simple http server by default; part of the
282websocket standard is upgrading this http connection to a websocket one.
283<p>
284This allows the same server to provide files like scripts and favicon /
285images or whatever over http and dynamic data over websockets all in
286one place; they're all handled in the user callback.
287</blockquote>
288<hr>
Andy Greene92cd172011-01-19 13:11:55 +0000289<h2>libwebsockets_fork_service_loop - Optional helper function forks off a process for the websocket server loop. You don't have to use this but if not, you have to make sure you are calling libwebsocket_service periodically to service the websocket traffic</h2>
290<i>int</i>
291<b>libwebsockets_fork_service_loop</b>
Peter Hinz56885f32011-03-02 22:03:47 +0000292(<i>struct libwebsocket_context *</i> <b>context</b>)
Andy Greene92cd172011-01-19 13:11:55 +0000293<h3>Arguments</h3>
294<dl>
Peter Hinz56885f32011-03-02 22:03:47 +0000295<dt><b>context</b>
Andy Greene92cd172011-01-19 13:11:55 +0000296<dd>server context returned by creation function
297</dl>
298<hr>
Andy Greenb45993c2010-12-18 15:13:50 +0000299<h2>libwebsockets_get_protocol - Returns a protocol pointer from a websocket connection.</h2>
300<i>const struct libwebsocket_protocols *</i>
301<b>libwebsockets_get_protocol</b>
302(<i>struct libwebsocket *</i> <b>wsi</b>)
303<h3>Arguments</h3>
304<dl>
305<dt><b>wsi</b>
306<dd>pointer to struct websocket you want to know the protocol of
307</dl>
308<h3>Description</h3>
309<blockquote>
310<p>
311This is useful to get the protocol to broadcast back to from inside
312the callback.
313</blockquote>
314<hr>
Andy Greene92cd172011-01-19 13:11:55 +0000315<h2>libwebsockets_broadcast - Sends a buffer to the callback for all active connections of the given protocol.</h2>
Andy Greenb45993c2010-12-18 15:13:50 +0000316<i>int</i>
317<b>libwebsockets_broadcast</b>
318(<i>const struct libwebsocket_protocols *</i> <b>protocol</b>,
319<i>unsigned char *</i> <b>buf</b>,
320<i>size_t</i> <b>len</b>)
321<h3>Arguments</h3>
322<dl>
323<dt><b>protocol</b>
324<dd>pointer to the protocol you will broadcast to all members of
325<dt><b>buf</b>
326<dd>buffer containing the data to be broadcase. NOTE: this has to be
327allocated with LWS_SEND_BUFFER_PRE_PADDING valid bytes before
328the pointer and LWS_SEND_BUFFER_POST_PADDING afterwards in the
329case you are calling this function from callback context.
330<dt><b>len</b>
331<dd>length of payload data in buf, starting from buf.
332</dl>
333<h3>Description</h3>
334<blockquote>
335This function allows bulk sending of a packet to every connection using
336the given protocol. It does not send the data directly; instead it calls
337the callback with a reason type of LWS_CALLBACK_BROADCAST. If the callback
338wants to actually send the data for that connection, the callback itself
339should call <b>libwebsocket_write</b>.
340<p>
341<b>libwebsockets_broadcast</b> can be called from another fork context without
342having to take any care about data visibility between the processes, it'll
343"just work".
344</blockquote>
345<hr>
Andy Green62a12932010-11-03 11:19:23 +0000346<h2>libwebsocket_write - Apply protocol then write data to client</h2>
347<i>int</i>
348<b>libwebsocket_write</b>
349(<i>struct libwebsocket *</i> <b>wsi</b>,
350<i>unsigned char *</i> <b>buf</b>,
351<i>size_t</i> <b>len</b>,
352<i>enum libwebsocket_write_protocol</i> <b>protocol</b>)
353<h3>Arguments</h3>
354<dl>
355<dt><b>wsi</b>
356<dd>Websocket instance (available from user callback)
357<dt><b>buf</b>
358<dd>The data to send. For data being sent on a websocket
359connection (ie, not default http), this buffer MUST have
360LWS_SEND_BUFFER_PRE_PADDING bytes valid BEFORE the pointer
361and an additional LWS_SEND_BUFFER_POST_PADDING bytes valid
362in the buffer after (buf + len). This is so the protocol
363header and trailer data can be added in-situ.
364<dt><b>len</b>
365<dd>Count of the data bytes in the payload starting from buf
366<dt><b>protocol</b>
367<dd>Use LWS_WRITE_HTTP to reply to an http connection, and one
368of LWS_WRITE_BINARY or LWS_WRITE_TEXT to send appropriate
369data on a websockets connection. Remember to allow the extra
370bytes before and after buf if LWS_WRITE_BINARY or LWS_WRITE_TEXT
371are used.
372</dl>
373<h3>Description</h3>
374<blockquote>
375This function provides the way to issue data back to the client
376for both http and websocket protocols.
377<p>
378In the case of sending using websocket protocol, be sure to allocate
379valid storage before and after buf as explained above. This scheme
380allows maximum efficiency of sending data and protocol in a single
381packet while not burdening the user code with any protocol knowledge.
382</blockquote>
383<hr>
384<h2>libwebsockets_serve_http_file - Send a file back to the client using http</h2>
385<i>int</i>
386<b>libwebsockets_serve_http_file</b>
387(<i>struct libwebsocket *</i> <b>wsi</b>,
388<i>const char *</i> <b>file</b>,
389<i>const char *</i> <b>content_type</b>)
390<h3>Arguments</h3>
391<dl>
392<dt><b>wsi</b>
393<dd>Websocket instance (available from user callback)
394<dt><b>file</b>
395<dd>The file to issue over http
396<dt><b>content_type</b>
397<dd>The http content type, eg, text/html
398</dl>
399<h3>Description</h3>
400<blockquote>
401This function is intended to be called from the callback in response
402to http requests from the client. It allows the callback to issue
403local files down the http link in a single step.
404</blockquote>
405<hr>
Andy Green38e57bb2011-01-19 12:20:27 +0000406<h2>libwebsockets_remaining_packet_payload - Bytes to come before "overall" rx packet is complete</h2>
407<i>size_t</i>
408<b>libwebsockets_remaining_packet_payload</b>
409(<i>struct libwebsocket *</i> <b>wsi</b>)
410<h3>Arguments</h3>
411<dl>
412<dt><b>wsi</b>
413<dd>Websocket instance (available from user callback)
414</dl>
415<h3>Description</h3>
416<blockquote>
417This function is intended to be called from the callback if the
418user code is interested in "complete packets" from the client.
419libwebsockets just passes through payload as it comes and issues a buffer
420additionally when it hits a built-in limit. The LWS_CALLBACK_RECEIVE
421callback handler can use this API to find out if the buffer it has just
422been given is the last piece of a "complete packet" from the client --
423when that is the case <b>libwebsockets_remaining_packet_payload</b> will return
4240.
425<p>
426Many protocols won't care becuse their packets are always small.
427</blockquote>
428<hr>
Andy Green90c7cbc2011-01-27 06:26:52 +0000429<h2>libwebsocket_client_connect - Connect to another websocket server</h2>
430<i>struct libwebsocket *</i>
431<b>libwebsocket_client_connect</b>
Peter Hinz56885f32011-03-02 22:03:47 +0000432(<i>struct libwebsocket_context *</i> <b>context</b>,
Andy Green90c7cbc2011-01-27 06:26:52 +0000433<i>const char *</i> <b>address</b>,
434<i>int</i> <b>port</b>,
435<i>int</i> <b>ssl_connection</b>,
436<i>const char *</i> <b>path</b>,
437<i>const char *</i> <b>host</b>,
438<i>const char *</i> <b>origin</b>,
Andy Greenbfb051f2011-02-09 08:49:14 +0000439<i>const char *</i> <b>protocol</b>,
440<i>int</i> <b>ietf_version_or_minus_one</b>)
Andy Green90c7cbc2011-01-27 06:26:52 +0000441<h3>Arguments</h3>
442<dl>
Peter Hinz56885f32011-03-02 22:03:47 +0000443<dt><b>context</b>
Andy Green90c7cbc2011-01-27 06:26:52 +0000444<dd>Websocket context
445<dt><b>address</b>
446<dd>Remote server address, eg, "myserver.com"
447<dt><b>port</b>
448<dd>Port to connect to on the remote server, eg, 80
449<dt><b>ssl_connection</b>
450<dd>0 = ws://, 1 = wss:// encrypted, 2 = wss:// allow self
451signed certs
452<dt><b>path</b>
453<dd>Websocket path on server
454<dt><b>host</b>
455<dd>Hostname on server
456<dt><b>origin</b>
457<dd>Socket origin name
458<dt><b>protocol</b>
459<dd>Comma-separated list of protocols being asked for from
460the server, or just one. The server will pick the one it
461likes best.
Andy Greenbfb051f2011-02-09 08:49:14 +0000462<dt><b>ietf_version_or_minus_one</b>
463<dd>-1 to ask to connect using the default, latest
464protocol supported, or the specific protocol ordinal
Andy Green90c7cbc2011-01-27 06:26:52 +0000465</dl>
466<h3>Description</h3>
467<blockquote>
468This function creates a connection to a remote server
469</blockquote>
470<hr>
Andy Green8f037e42010-12-19 22:13:26 +0000471<h2>callback - User server actions</h2>
472<i>int</i>
473<b>callback</b>
Darin Willitsc19456f2011-02-14 17:52:39 +0000474(<i>struct libwebsocket_context *</i> <b>context</b>,
Andy Green62c54d22011-02-14 09:14:25 +0000475<i>struct libwebsocket *</i> <b>wsi</b>,
Andy Green8f037e42010-12-19 22:13:26 +0000476<i>enum libwebsocket_callback_reasons</i> <b>reason</b>,
477<i>void *</i> <b>user</b>,
478<i>void *</i> <b>in</b>,
479<i>size_t</i> <b>len</b>)
480<h3>Arguments</h3>
481<dl>
Andy Green32375b72011-02-19 08:32:53 +0000482<dt><b>context</b>
483<dd>Websockets context
Andy Green8f037e42010-12-19 22:13:26 +0000484<dt><b>wsi</b>
485<dd>Opaque websocket instance pointer
486<dt><b>reason</b>
487<dd>The reason for the call
488<dt><b>user</b>
489<dd>Pointer to per-session user data allocated by library
490<dt><b>in</b>
491<dd>Pointer used for some callback reasons
492<dt><b>len</b>
493<dd>Length set for some callback reasons
494</dl>
495<h3>Description</h3>
496<blockquote>
497This callback is the way the user controls what is served. All the
498protocol detail is hidden and handled by the library.
499<p>
500For each connection / session there is user data allocated that is
501pointed to by "user". You set the size of this user data area when
502the library is initialized with libwebsocket_create_server.
503<p>
504You get an opportunity to initialize user data when called back with
505LWS_CALLBACK_ESTABLISHED reason.
506</blockquote>
507<h3>LWS_CALLBACK_ESTABLISHED</h3>
508<blockquote>
Andy Green90c7cbc2011-01-27 06:26:52 +0000509after the server completes a handshake with
510an incoming client
511</blockquote>
512<h3>LWS_CALLBACK_CLIENT_ESTABLISHED</h3>
513<blockquote>
514after your client connection completed
515a handshake with the remote server
Andy Green8f037e42010-12-19 22:13:26 +0000516</blockquote>
517<h3>LWS_CALLBACK_CLOSED</h3>
518<blockquote>
519when the websocket session ends
520</blockquote>
521<h3>LWS_CALLBACK_BROADCAST</h3>
522<blockquote>
523signal to send to client (you would use
524<b>libwebsocket_write</b> taking care about the
525special buffer requirements
526</blockquote>
527<h3>LWS_CALLBACK_RECEIVE</h3>
528<blockquote>
Andy Green90c7cbc2011-01-27 06:26:52 +0000529data has appeared for this server endpoint from a
530remote client, it can be found at *in and is
531len bytes long
532</blockquote>
Andy Greena6cbece2011-01-27 20:06:03 +0000533<h3>LWS_CALLBACK_CLIENT_RECEIVE_PONG</h3>
534<blockquote>
535if you elected to see PONG packets,
536they appear with this callback reason. PONG
537packets only exist in 04+ protocol
538</blockquote>
Andy Green90c7cbc2011-01-27 06:26:52 +0000539<h3>LWS_CALLBACK_CLIENT_RECEIVE</h3>
540<blockquote>
541data has appeared from the server for the
542client connection, it can be found at *in and
543is len bytes long
Andy Green8f037e42010-12-19 22:13:26 +0000544</blockquote>
545<h3>LWS_CALLBACK_HTTP</h3>
546<blockquote>
547an http request has come from a client that is not
548asking to upgrade the connection to a websocket
549one. This is a chance to serve http content,
550for example, to send a script to the client
551which will then open the websockets connection.
Andy Green7619c472011-01-23 17:47:08 +0000552<tt><b>in</b></tt> points to the URI path requested and
Andy Green8f037e42010-12-19 22:13:26 +0000553<b>libwebsockets_serve_http_file</b> makes it very
554simple to send back a file to the client.
555</blockquote>
Andy Green90c7cbc2011-01-27 06:26:52 +0000556<h3>LWS_CALLBACK_CLIENT_WRITEABLE</h3>
557<blockquote>
558if you call
559<b>libwebsocket_callback_on_writable</b> on a connection, you will
560get this callback coming when the connection socket is able to
561accept another write packet without blocking. If it already
562was able to take another packet without blocking, you'll get
563this callback at the next call to the service loop function.
564</blockquote>
Andy Green07034092011-02-13 08:37:12 +0000565<h3>LWS_CALLBACK_FILTER_NETWORK_CONNECTION</h3>
566<blockquote>
567called when a client connects to
568the server at network level; the connection is accepted but then
569passed to this callback to decide whether to hang up immediately
570or not, based on the client IP. <tt><b>user</b></tt> contains the connection
571socket's descriptor. Return non-zero to terminate
572the connection before sending or receiving anything.
573Because this happens immediately after the network connection
574from the client, there's no websocket protocol selected yet so
575this callback is issued only to protocol 0.
576</blockquote>
Andy Greenc85619d2011-02-13 08:25:26 +0000577<h3>LWS_CALLBACK_FILTER_PROTOCOL_CONNECTION</h3>
578<blockquote>
579called when the handshake has
580been received and parsed from the client, but the response is
581not sent yet. Return non-zero to disallow the connection.
Andy Green07034092011-02-13 08:37:12 +0000582<tt><b>user</b></tt> is a pointer to an array of struct lws_tokens, you can
583use the header enums lws_token_indexes from libwebsockets.h
584to check for and read the supported header presence and
585content before deciding to allow the handshake to proceed or
586to kill the connection.
Andy Green0894bda2011-02-19 09:09:11 +0000587</blockquote>
588<h3>LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS</h3>
589<blockquote>
Andy Green6901cb32011-02-21 08:06:47 +0000590if configured for
Andy Green0894bda2011-02-19 09:09:11 +0000591including OpenSSL support, this callback allows your user code
592to perform extra <b>SSL_CTX_load_verify_locations</b> or similar
593calls to direct OpenSSL where to find certificates the client
594can use to confirm the remote server identity. <tt><b>user</b></tt> is the
595OpenSSL SSL_CTX*
Andy Green6901cb32011-02-21 08:06:47 +0000596</blockquote>
597<h3>LWS_CALLBACK_OPENSSL_LOAD_EXTRA_SERVER_VERIFY_CERTS</h3>
598<blockquote>
599if configured for
600including OpenSSL support, this callback allows your user code
601to load extra certifcates into the server which allow it to
602verify the validity of certificates returned by clients. <tt><b>user</b></tt>
603is the server's OpenSSL SSL_CTX*
604</blockquote>
605<h3>LWS_CALLBACK_OPENSSL_PERFORM_CLIENT_CERT_VERIFICATION</h3>
606<blockquote>
607if the
608libwebsockets context was created with the option
609LWS_SERVER_OPTION_REQUIRE_VALID_OPENSSL_CLIENT_CERT, then this
610callback is generated during OpenSSL verification of the cert
611sent from the client. It is sent to protocol[0] callback as
612no protocol has been negotiated on the connection yet.
613Notice that the libwebsockets context and wsi are both NULL
614during this callback. See
615</blockquote>
616<h3>http</h3>
617<blockquote>
618//www.openssl.org/docs/ssl/SSL_CTX_set_verify.html
619to understand more detail about the OpenSSL callback that
620generates this libwebsockets callback and the meanings of the
621arguments passed. In this callback, <tt><b>user</b></tt> is the x509_ctx,
622<tt><b>in</b></tt> is the ssl pointer and <tt><b>len</b></tt> is preverify_ok
623Notice that this callback maintains libwebsocket return
624conventions, return 0 to mean the cert is OK or 1 to fail it.
625This also means that if you don't handle this callback then
626the default callback action of returning 0 allows the client
627certificates.
Andy Green385e7ad2011-03-01 21:06:02 +0000628</blockquote>
629<h3>LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER</h3>
630<blockquote>
631this callback happens
632when a client handshake is being compiled. <tt><b>user</b></tt> is NULL,
633<tt><b>in</b></tt> is a char **, it's pointing to a char * which holds the
634next location in the header buffer where you can add
635headers, and <tt><b>len</b></tt> is the remaining space in the header buffer,
636which is typically some hundreds of bytes. So, to add a canned
637cookie, your handler code might look similar to:
638<p>
639char **p = (char **)in;
640<p>
641if (len &lt; 100)
642return 1;
643<p>
644*p += sprintf(*p, "Cookie: a=b\x0d\x0a");
645<p>
646return 0;
647<p>
648Notice if you add anything, you just have to take care about
649the CRLF on the line you added. Obviously this callback is
650optional, if you don't handle it everything is fine.
651<p>
652Notice the callback is coming to protocols[0] all the time,
653because there is no specific protocol handshook yet.
Andy Greenc5114822011-03-06 10:29:35 +0000654</blockquote>
655<h3>LWS_CALLBACK_CONFIRM_EXTENSION_OKAY</h3>
656<blockquote>
657When the server handshake code
658sees that it does support a requested extension, before
659accepting the extension by additing to the list sent back to
660the client it gives this callback just to check that it's okay
661to use that extension. It calls back to the requested protocol
662and with <tt><b>in</b></tt> being the extension name, <tt><b>len</b></tt> is 0 and <tt><b>user</b></tt> is
663valid. Note though at this time the ESTABLISHED callback hasn't
664happened yet so if you initialize <tt><b>user</b></tt> content there, <tt><b>user</b></tt>
665content during this callback might not be useful for anything.
666Notice this callback comes to protocols[0].
Andy Greenc85619d2011-02-13 08:25:26 +0000667<p>
668The next four reasons are optional and only need taking care of if you
669will be integrating libwebsockets sockets into an external polling
670array.
671</blockquote>
672<h3>LWS_CALLBACK_ADD_POLL_FD</h3>
673<blockquote>
674libwebsocket deals with its <b>poll</b> loop
675internally, but in the case you are integrating with another
676server you will need to have libwebsocket sockets share a
677polling array with the other server. This and the other
678POLL_FD related callbacks let you put your specialized
679poll array interface code in the callback for protocol 0, the
680first protocol you support, usually the HTTP protocol in the
681serving case. This callback happens when a socket needs to be
682</blockquote>
683<h3>added to the polling loop</h3>
684<blockquote>
685<tt><b>user</b></tt> contains the fd, and
686<tt><b>len</b></tt> is the events bitmap (like, POLLIN). If you are using the
687internal polling loop (the "service" callback), you can just
688ignore these callbacks.
689</blockquote>
690<h3>LWS_CALLBACK_DEL_POLL_FD</h3>
691<blockquote>
692This callback happens when a socket descriptor
693needs to be removed from an external polling array. <tt><b>user</b></tt> is
694the socket desricptor. If you are using the internal polling
695loop, you can just ignore it.
696</blockquote>
697<h3>LWS_CALLBACK_SET_MODE_POLL_FD</h3>
698<blockquote>
699This callback happens when libwebsockets
700wants to modify the events for the socket descriptor in <tt><b>user</b></tt>.
701The handler should OR <tt><b>len</b></tt> on to the events member of the pollfd
702struct for this socket descriptor. If you are using the
703internal polling loop, you can just ignore it.
704</blockquote>
705<h3>LWS_CALLBACK_CLEAR_MODE_POLL_FD</h3>
706<blockquote>
707This callback occurs when libwebsockets
708wants to modify the events for the socket descriptor in <tt><b>user</b></tt>.
709The handler should AND ~<tt><b>len</b></tt> on to the events member of the
710pollfd struct for this socket descriptor. If you are using the
711internal polling loop, you can just ignore it.
712</blockquote>
Andy Green8f037e42010-12-19 22:13:26 +0000713<hr>
Andy Green4f3943a2010-11-12 10:44:16 +0000714<h2>struct libwebsocket_protocols - List of protocols and handlers server supports.</h2>
715<b>struct libwebsocket_protocols</b> {<br>
716&nbsp; &nbsp; <i>const char *</i> <b>name</b>;<br>
Darin Willitsc19456f2011-02-14 17:52:39 +0000717&nbsp; &nbsp; <i>int (*</i><b>callback</b>) <i>(struct libwebsocket_context * context,struct libwebsocket *wsi,enum libwebsocket_callback_reasons reason, void *user,void *in, size_t len)</i>;<br>
Andy Green4f3943a2010-11-12 10:44:16 +0000718&nbsp; &nbsp; <i>size_t</i> <b>per_session_data_size</b>;<br>
Andy Greenb45993c2010-12-18 15:13:50 +0000719&nbsp; &nbsp; <i>struct libwebsocket_context *</i> <b>owning_server</b>;<br>
720&nbsp; &nbsp; <i>int</i> <b>broadcast_socket_port</b>;<br>
721&nbsp; &nbsp; <i>int</i> <b>broadcast_socket_user_fd</b>;<br>
722&nbsp; &nbsp; <i>int</i> <b>protocol_index</b>;<br>
Andy Green4f3943a2010-11-12 10:44:16 +0000723};<br>
724<h3>Members</h3>
725<dl>
726<dt><b>name</b>
727<dd>Protocol name that must match the one given in the client
728Javascript new WebSocket(url, 'protocol') name
729<dt><b>callback</b>
730<dd>The service callback used for this protocol. It allows the
731service action for an entire protocol to be encapsulated in
732the protocol-specific callback
733<dt><b>per_session_data_size</b>
734<dd>Each new connection using this protocol gets
735this much memory allocated on connection establishment and
736freed on connection takedown. A pointer to this per-connection
737allocation is passed into the callback in the 'user' parameter
Andy Greenb45993c2010-12-18 15:13:50 +0000738<dt><b>owning_server</b>
739<dd>the server init call fills in this opaque pointer when
740registering this protocol with the server.
741<dt><b>broadcast_socket_port</b>
742<dd>the server init call fills this in with the
743localhost port number used to forward broadcasts for this
744protocol
745<dt><b>broadcast_socket_user_fd</b>
746<dd>the server init call fills this in ... the <b>main</b>
747process context can write to this socket to perform broadcasts
748(use the <b>libwebsockets_broadcast</b> api to do this instead,
749it works from any process context)
750<dt><b>protocol_index</b>
751<dd>which protocol we are starting from zero
Andy Green4f3943a2010-11-12 10:44:16 +0000752</dl>
753<h3>Description</h3>
754<blockquote>
755This structure represents one protocol supported by the server. An
756array of these structures is passed to <b>libwebsocket_create_server</b>
757allows as many protocols as you like to be handled by one server.
758</blockquote>
759<hr>
Andy Greend6e09112011-03-05 16:12:15 +0000760<h2>struct libwebsocket_extension - An extension we know how to cope with</h2>
761<b>struct libwebsocket_extension</b> {<br>
762&nbsp; &nbsp; <i>const char *</i> <b>name</b>;<br>
763&nbsp; &nbsp; <i>int (*</i><b>callback</b>) <i>(struct libwebsocket_context *context,struct libwebsocket *wsi,enum libwebsocket_callback_reasons reason, void *user,void *in, size_t len)</i>;<br>
764&nbsp; &nbsp; <i>size_t</i> <b>per_session_data_size</b>;<br>
765};<br>
766<h3>Members</h3>
767<dl>
768<dt><b>name</b>
769<dd>Formal extension name, eg, "deflate-stream"
770<dt><b>callback</b>
771<dd>Service callback
772<dt><b>per_session_data_size</b>
773<dd>Libwebsockets will auto-malloc this much
774memory for the use of the extension, a pointer
775to it comes in the <tt><b>user</b></tt> callback parameter
776</dl>
777<hr>