add new context arg to libwebsockets_serve_http_file
[profile/ivi/libwebsockets.git] / libwebsockets-api-doc.html
1 <h2>libwebsockets_hangup_on_client - Server calls to terminate client connection</h2>
2 <i>void</i>
3 <b>libwebsockets_hangup_on_client</b>
4 (<i>struct libwebsocket_context *</i> <b>context</b>,
5 <i>int</i> <b>fd</b>)
6 <h3>Arguments</h3>
7 <dl>
8 <dt><b>context</b>
9 <dd>libwebsockets context
10 <dt><b>fd</b>
11 <dd>Connection socket descriptor
12 </dl>
13 <hr>
14 <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>
37 This function fills in <tt><b>name</b></tt> and <tt><b>rip</b></tt> with the name and IP of
38 the client connected with socket descriptor <tt><b>fd</b></tt>.  Names may be
39 truncated if there is not enough room.  If either cannot be
40 determined, they will be returned as valid zero-length strings.
41 </blockquote>
42 <hr>
43 <h2>libwebsocket_service_fd - Service polled socket with something waiting</h2>
44 <i>int</i>
45 <b>libwebsocket_service_fd</b>
46 (<i>struct libwebsocket_context *</i> <b>context</b>,
47 <i>struct pollfd *</i> <b>pollfd</b>)
48 <h3>Arguments</h3>
49 <dl>
50 <dt><b>context</b>
51 <dd>Websocket context
52 <dt><b>pollfd</b>
53 <dd>The pollfd entry describing the socket fd and which events
54 happened.
55 </dl>
56 <h3>Description</h3>
57 <blockquote>
58 This function closes any active connections and then frees the
59 context.  After calling this, any further use of the context is
60 undefined.
61 </blockquote>
62 <hr>
63 <h2>libwebsocket_context_destroy - Destroy the websocket context</h2>
64 <i>void</i>
65 <b>libwebsocket_context_destroy</b>
66 (<i>struct libwebsocket_context *</i> <b>context</b>)
67 <h3>Arguments</h3>
68 <dl>
69 <dt><b>context</b>
70 <dd>Websocket context
71 </dl>
72 <h3>Description</h3>
73 <blockquote>
74 This function closes any active connections and then frees the
75 context.  After calling this, any further use of the context is
76 undefined.
77 </blockquote>
78 <hr>
79 <h2>libwebsocket_service - Service any pending websocket activity</h2>
80 <i>int</i>
81 <b>libwebsocket_service</b>
82 (<i>struct libwebsocket_context *</i> <b>context</b>,
83 <i>int</i> <b>timeout_ms</b>)
84 <h3>Arguments</h3>
85 <dl>
86 <dt><b>context</b>
87 <dd>Websocket context
88 <dt><b>timeout_ms</b>
89 <dd>Timeout for poll; 0 means return immediately if nothing needed
90 service otherwise block and service immediately, returning
91 after the timeout if nothing needed service.
92 </dl>
93 <h3>Description</h3>
94 <blockquote>
95 This function deals with any pending websocket traffic, for three
96 kinds of event.  It handles these events on both server and client
97 types of connection the same.
98 <p>
99 1) Accept new connections to our context's server
100 <p>
101 2) Perform pending broadcast writes initiated from other forked
102 processes (effectively serializing asynchronous broadcasts)
103 <p>
104 3) Call the receive callback for incoming frame data received by
105 server or client connections.
106 <p>
107 You need to call this service function periodically to all the above
108 functions to happen; if your application is single-threaded you can
109 just call it in your main event loop.
110 <p>
111 Alternatively you can fork a new process that asynchronously handles
112 calling this service in a loop.  In that case you are happy if this
113 call blocks your thread until it needs to take care of something and
114 would call it with a large nonzero timeout.  Your loop then takes no
115 CPU while there is nothing happening.
116 <p>
117 If you are calling it in a single-threaded app, you don't want it to
118 wait around blocking other things in your loop from happening, so you
119 would call it with a timeout_ms of 0, so it returns immediately if
120 nothing is pending, or as soon as it services whatever was pending.
121 </blockquote>
122 <hr>
123 <h2>libwebsocket_callback_on_writable - Request a callback when this socket becomes able to be written to without blocking</h2>
124 <i>int</i>
125 <b>libwebsocket_callback_on_writable</b>
126 (<i>struct libwebsocket_context *</i> <b>context</b>,
127 <i>struct libwebsocket *</i> <b>wsi</b>)
128 <h3>Arguments</h3>
129 <dl>
130 <dt><b>context</b>
131 <dd>libwebsockets context
132 <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>
146 <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>
164 You will not need this unless you are doing something special
165 </blockquote>
166 <hr>
167 <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>
179 You will not need this unless you are doing something special
180 </blockquote>
181 <hr>
182 <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>
197 If the output side of a server process becomes choked, this allows flow
198 control for the input side.
199 </blockquote>
200 <hr>
201 <h2>libwebsocket_canonical_hostname - returns this host's hostname</h2>
202 <i>const char *</i>
203 <b>libwebsocket_canonical_hostname</b>
204 (<i>struct libwebsocket_context *</i> <b>context</b>)
205 <h3>Arguments</h3>
206 <dl>
207 <dt><b>context</b>
208 <dd>Websocket context
209 </dl>
210 <h3>Description</h3>
211 <blockquote>
212 <p>
213 This is typically used by client code to fill in the host parameter
214 when making a client connection.  You can only call it after the context
215 has been created.
216 </blockquote>
217 <hr>
218 <h2>libwebsocket_create_context - Create the websocket handler</h2>
219 <i>struct libwebsocket_context *</i>
220 <b>libwebsocket_create_context</b>
221 (<i>int</i> <b>port</b>,
222 <i>const char *</i> <b>interf</b>,
223 <i>struct libwebsocket_protocols *</i> <b>protocols</b>,
224 <i>struct libwebsocket_extension *</i> <b>extensions</b>,
225 <i>const char *</i> <b>ssl_cert_filepath</b>,
226 <i>const char *</i> <b>ssl_private_key_filepath</b>,
227 <i>const char *</i> <b>ssl_ca_filepath</b>,
228 <i>int</i> <b>gid</b>,
229 <i>int</i> <b>uid</b>,
230 <i>unsigned int</i> <b>options</b>,
231 <i>void *</i> <b>user</b>)
232 <h3>Arguments</h3>
233 <dl>
234 <dt><b>port</b>
235 <dd>Port to listen on... you can use 0 to suppress listening on
236 any port, that's what you want if you are not running a
237 websocket server at all but just using it as a client
238 <dt><b>interf</b>
239 <dd>NULL to bind the listen socket to all interfaces, or the
240 interface name, eg, "eth2"
241 <dt><b>protocols</b>
242 <dd>Array of structures listing supported protocols and a protocol-
243 specific callback for each one.  The list is ended with an
244 entry that has a NULL callback pointer.
245 It's not const because we write the owning_server member
246 <dt><b>extensions</b>
247 <dd>NULL or array of libwebsocket_extension structs listing the
248 extensions this context supports
249 <dt><b>ssl_cert_filepath</b>
250 <dd>If libwebsockets was compiled to use ssl, and you want
251 to listen using SSL, set to the filepath to fetch the
252 server cert from, otherwise NULL for unencrypted
253 <dt><b>ssl_private_key_filepath</b>
254 <dd>filepath to private key if wanting SSL mode,
255 else ignored
256 <dt><b>ssl_ca_filepath</b>
257 <dd>CA certificate filepath or NULL
258 <dt><b>gid</b>
259 <dd>group id to change to after setting listen socket, or -1.
260 <dt><b>uid</b>
261 <dd>user id to change to after setting listen socket, or -1.
262 <dt><b>options</b>
263 <dd>0, or LWS_SERVER_OPTION_DEFEAT_CLIENT_MASK
264 <dt><b>user</b>
265 <dd>optional user pointer that can be recovered via the context
266 pointer using libwebsocket_context_user 
267 </dl>
268 <h3>Description</h3>
269 <blockquote>
270 This function creates the listening socket and takes care
271 of all initialization in one step.
272 <p>
273 After initialization, it returns a struct libwebsocket_context * that
274 represents this server.  After calling, user code needs to take care
275 of calling <b>libwebsocket_service</b> with the context pointer to get the
276 server's sockets serviced.  This can be done in the same process context
277 or a forked process, or another thread,
278 <p>
279 The protocol callback functions are called for a handful of events
280 including http requests coming in, websocket connections becoming
281 established, and data arriving; it's also called periodically to allow
282 async transmission.
283 <p>
284 HTTP requests are sent always to the FIRST protocol in <tt><b>protocol</b></tt>, since
285 at that time websocket protocol has not been negotiated.  Other
286 protocols after the first one never see any HTTP callack activity.
287 <p>
288 The server created is a simple http server by default; part of the
289 websocket standard is upgrading this http connection to a websocket one.
290 <p>
291 This allows the same server to provide files like scripts and favicon /
292 images or whatever over http and dynamic data over websockets all in
293 one place; they're all handled in the user callback.
294 </blockquote>
295 <hr>
296 <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>
297 <i>int</i>
298 <b>libwebsockets_fork_service_loop</b>
299 (<i>struct libwebsocket_context *</i> <b>context</b>)
300 <h3>Arguments</h3>
301 <dl>
302 <dt><b>context</b>
303 <dd>server context returned by creation function
304 </dl>
305 <hr>
306 <h2>libwebsockets_get_protocol - Returns a protocol pointer from a websocket connection.</h2>
307 <i>const struct libwebsocket_protocols *</i>
308 <b>libwebsockets_get_protocol</b>
309 (<i>struct libwebsocket *</i> <b>wsi</b>)
310 <h3>Arguments</h3>
311 <dl>
312 <dt><b>wsi</b>
313 <dd>pointer to struct websocket you want to know the protocol of
314 </dl>
315 <h3>Description</h3>
316 <blockquote>
317 <p>
318 This is useful to get the protocol to broadcast back to from inside
319 the callback.
320 </blockquote>
321 <hr>
322 <h2>libwebsockets_broadcast - Sends a buffer to the callback for all active connections of the given protocol.</h2>
323 <i>int</i>
324 <b>libwebsockets_broadcast</b>
325 (<i>const struct libwebsocket_protocols *</i> <b>protocol</b>,
326 <i>unsigned char *</i> <b>buf</b>,
327 <i>size_t</i> <b>len</b>)
328 <h3>Arguments</h3>
329 <dl>
330 <dt><b>protocol</b>
331 <dd>pointer to the protocol you will broadcast to all members of
332 <dt><b>buf</b>
333 <dd>buffer containing the data to be broadcase.  NOTE: this has to be
334 allocated with LWS_SEND_BUFFER_PRE_PADDING valid bytes before
335 the pointer and LWS_SEND_BUFFER_POST_PADDING afterwards in the
336 case you are calling this function from callback context.
337 <dt><b>len</b>
338 <dd>length of payload data in buf, starting from buf.
339 </dl>
340 <h3>Description</h3>
341 <blockquote>
342 This function allows bulk sending of a packet to every connection using
343 the given protocol.  It does not send the data directly; instead it calls
344 the callback with a reason type of LWS_CALLBACK_BROADCAST.  If the callback
345 wants to actually send the data for that connection, the callback itself
346 should call <b>libwebsocket_write</b>.
347 <p>
348 <b>libwebsockets_broadcast</b> can be called from another fork context without
349 having to take any care about data visibility between the processes, it'll
350 "just work".
351 </blockquote>
352 <hr>
353 <h2>lws_set_log_level - Set the logging bitfield</h2>
354 <i>void</i>
355 <b>lws_set_log_level</b>
356 (<i>int</i> <b>level</b>,
357 <i>void (*</i><b>log_emit_function</b>) <i>(const char *line)</i>)
358 <h3>Arguments</h3>
359 <dl>
360 <dt><b>level</b>
361 <dd>OR together the LLL_ debug contexts you want output from
362 <dt><b>log_emit_function</b>
363 <dd>NULL to leave it as it is, or a user-supplied
364 function to perform log string emission instead of
365 the default stderr one.
366 </dl>
367 <h3>Description</h3>
368 <blockquote>
369 log level defaults to "err" and "warn" contexts enabled only and
370 emission on stderr.
371 </blockquote>
372 <hr>
373 <h2>libwebsocket_write - Apply protocol then write data to client</h2>
374 <i>int</i>
375 <b>libwebsocket_write</b>
376 (<i>struct libwebsocket *</i> <b>wsi</b>,
377 <i>unsigned char *</i> <b>buf</b>,
378 <i>size_t</i> <b>len</b>,
379 <i>enum libwebsocket_write_protocol</i> <b>protocol</b>)
380 <h3>Arguments</h3>
381 <dl>
382 <dt><b>wsi</b>
383 <dd>Websocket instance (available from user callback)
384 <dt><b>buf</b>
385 <dd>The data to send.  For data being sent on a websocket
386 connection (ie, not default http), this buffer MUST have
387 LWS_SEND_BUFFER_PRE_PADDING bytes valid BEFORE the pointer
388 and an additional LWS_SEND_BUFFER_POST_PADDING bytes valid
389 in the buffer after (buf + len).  This is so the protocol
390 header and trailer data can be added in-situ.
391 <dt><b>len</b>
392 <dd>Count of the data bytes in the payload starting from buf
393 <dt><b>protocol</b>
394 <dd>Use LWS_WRITE_HTTP to reply to an http connection, and one
395 of LWS_WRITE_BINARY or LWS_WRITE_TEXT to send appropriate
396 data on a websockets connection.  Remember to allow the extra
397 bytes before and after buf if LWS_WRITE_BINARY or LWS_WRITE_TEXT
398 are used.
399 </dl>
400 <h3>Description</h3>
401 <blockquote>
402 This function provides the way to issue data back to the client
403 for both http and websocket protocols.
404 <p>
405 In the case of sending using websocket protocol, be sure to allocate
406 valid storage before and after buf as explained above.  This scheme
407 allows maximum efficiency of sending data and protocol in a single
408 packet while not burdening the user code with any protocol knowledge.
409 </blockquote>
410 <hr>
411 <h2>libwebsockets_serve_http_file - Send a file back to the client using http</h2>
412 <i>int</i>
413 <b>libwebsockets_serve_http_file</b>
414 (<i>struct libwebsocket_context *</i> <b>context</b>,
415 <i>struct libwebsocket *</i> <b>wsi</b>,
416 <i>const char *</i> <b>file</b>,
417 <i>const char *</i> <b>content_type</b>)
418 <h3>Arguments</h3>
419 <dl>
420 <dt><b>context</b>
421 <dd>libwebsockets context
422 <dt><b>wsi</b>
423 <dd>Websocket instance (available from user callback)
424 <dt><b>file</b>
425 <dd>The file to issue over http
426 <dt><b>content_type</b>
427 <dd>The http content type, eg, text/html
428 </dl>
429 <h3>Description</h3>
430 <blockquote>
431 This function is intended to be called from the callback in response
432 to http requests from the client.  It allows the callback to issue
433 local files down the http link in a single step.
434 </blockquote>
435 <hr>
436 <h2>libwebsockets_remaining_packet_payload - Bytes to come before "overall" rx packet is complete</h2>
437 <i>size_t</i>
438 <b>libwebsockets_remaining_packet_payload</b>
439 (<i>struct libwebsocket *</i> <b>wsi</b>)
440 <h3>Arguments</h3>
441 <dl>
442 <dt><b>wsi</b>
443 <dd>Websocket instance (available from user callback)
444 </dl>
445 <h3>Description</h3>
446 <blockquote>
447 This function is intended to be called from the callback if the
448 user code is interested in "complete packets" from the client.
449 libwebsockets just passes through payload as it comes and issues a buffer
450 additionally when it hits a built-in limit.  The LWS_CALLBACK_RECEIVE
451 callback handler can use this API to find out if the buffer it has just
452 been given is the last piece of a "complete packet" from the client --
453 when that is the case <b>libwebsockets_remaining_packet_payload</b> will return
454 0.
455 <p>
456 Many protocols won't care becuse their packets are always small.
457 </blockquote>
458 <hr>
459 <h2>libwebsocket_client_connect - Connect to another websocket server</h2>
460 <i>struct libwebsocket *</i>
461 <b>libwebsocket_client_connect</b>
462 (<i>struct libwebsocket_context *</i> <b>context</b>,
463 <i>const char *</i> <b>address</b>,
464 <i>int</i> <b>port</b>,
465 <i>int</i> <b>ssl_connection</b>,
466 <i>const char *</i> <b>path</b>,
467 <i>const char *</i> <b>host</b>,
468 <i>const char *</i> <b>origin</b>,
469 <i>const char *</i> <b>protocol</b>,
470 <i>int</i> <b>ietf_version_or_minus_one</b>)
471 <h3>Arguments</h3>
472 <dl>
473 <dt><b>context</b>
474 <dd>Websocket context
475 <dt><b>address</b>
476 <dd>Remote server address, eg, "myserver.com"
477 <dt><b>port</b>
478 <dd>Port to connect to on the remote server, eg, 80
479 <dt><b>ssl_connection</b>
480 <dd>0 = ws://, 1 = wss:// encrypted, 2 = wss:// allow self
481 signed certs
482 <dt><b>path</b>
483 <dd>Websocket path on server
484 <dt><b>host</b>
485 <dd>Hostname on server
486 <dt><b>origin</b>
487 <dd>Socket origin name
488 <dt><b>protocol</b>
489 <dd>Comma-separated list of protocols being asked for from
490 the server, or just one.  The server will pick the one it
491 likes best.
492 <dt><b>ietf_version_or_minus_one</b>
493 <dd>-1 to ask to connect using the default, latest
494 protocol supported, or the specific protocol ordinal
495 </dl>
496 <h3>Description</h3>
497 <blockquote>
498 This function creates a connection to a remote server
499 </blockquote>
500 <hr>
501 <h2>libwebsocket_client_connect_extended - Connect to another websocket server</h2>
502 <i>struct libwebsocket *</i>
503 <b>libwebsocket_client_connect_extended</b>
504 (<i>struct libwebsocket_context *</i> <b>context</b>,
505 <i>const char *</i> <b>address</b>,
506 <i>int</i> <b>port</b>,
507 <i>int</i> <b>ssl_connection</b>,
508 <i>const char *</i> <b>path</b>,
509 <i>const char *</i> <b>host</b>,
510 <i>const char *</i> <b>origin</b>,
511 <i>const char *</i> <b>protocol</b>,
512 <i>int</i> <b>ietf_version_or_minus_one</b>,
513 <i>void *</i> <b>userdata</b>)
514 <h3>Arguments</h3>
515 <dl>
516 <dt><b>context</b>
517 <dd>Websocket context
518 <dt><b>address</b>
519 <dd>Remote server address, eg, "myserver.com"
520 <dt><b>port</b>
521 <dd>Port to connect to on the remote server, eg, 80
522 <dt><b>ssl_connection</b>
523 <dd>0 = ws://, 1 = wss:// encrypted, 2 = wss:// allow self
524 signed certs
525 <dt><b>path</b>
526 <dd>Websocket path on server
527 <dt><b>host</b>
528 <dd>Hostname on server
529 <dt><b>origin</b>
530 <dd>Socket origin name
531 <dt><b>protocol</b>
532 <dd>Comma-separated list of protocols being asked for from
533 the server, or just one.  The server will pick the one it
534 likes best.
535 <dt><b>ietf_version_or_minus_one</b>
536 <dd>-1 to ask to connect using the default, latest
537 protocol supported, or the specific protocol ordinal
538 <dt><b>userdata</b>
539 <dd>Pre-allocated user data
540 </dl>
541 <h3>Description</h3>
542 <blockquote>
543 This function creates a connection to a remote server
544 </blockquote>
545 <hr>
546 <h2>callback - User server actions</h2>
547 <i>LWS_EXTERN int</i>
548 <b>callback</b>
549 (<i>struct libwebsocket_context *</i> <b>context</b>,
550 <i>struct libwebsocket *</i> <b>wsi</b>,
551 <i>enum libwebsocket_callback_reasons</i> <b>reason</b>,
552 <i>void *</i> <b>user</b>,
553 <i>void *</i> <b>in</b>,
554 <i>size_t</i> <b>len</b>)
555 <h3>Arguments</h3>
556 <dl>
557 <dt><b>context</b>
558 <dd>Websockets context
559 <dt><b>wsi</b>
560 <dd>Opaque websocket instance pointer
561 <dt><b>reason</b>
562 <dd>The reason for the call
563 <dt><b>user</b>
564 <dd>Pointer to per-session user data allocated by library
565 <dt><b>in</b>
566 <dd>Pointer used for some callback reasons
567 <dt><b>len</b>
568 <dd>Length set for some callback reasons
569 </dl>
570 <h3>Description</h3>
571 <blockquote>
572 This callback is the way the user controls what is served.  All the
573 protocol detail is hidden and handled by the library.
574 <p>
575 For each connection / session there is user data allocated that is
576 pointed to by "user".  You set the size of this user data area when
577 the library is initialized with libwebsocket_create_server.
578 <p>
579 You get an opportunity to initialize user data when called back with
580 LWS_CALLBACK_ESTABLISHED reason.
581 </blockquote>
582 <h3>LWS_CALLBACK_ESTABLISHED</h3>
583 <blockquote>
584 after the server completes a handshake with
585 an incoming client
586 </blockquote>
587 <h3>LWS_CALLBACK_CLIENT_CONNECTION_ERROR</h3>
588 <blockquote>
589 the request client connection has
590 been unable to complete a handshake with the remote server
591 </blockquote>
592 <h3>LWS_CALLBACK_CLIENT_ESTABLISHED</h3>
593 <blockquote>
594 after your client connection completed
595 a handshake with the remote server
596 </blockquote>
597 <h3>LWS_CALLBACK_CLOSED</h3>
598 <blockquote>
599 when the websocket session ends
600 </blockquote>
601 <h3>LWS_CALLBACK_BROADCAST</h3>
602 <blockquote>
603 signal to send to client (you would use
604 <b>libwebsocket_write</b> taking care about the
605 special buffer requirements
606 </blockquote>
607 <h3>LWS_CALLBACK_RECEIVE</h3>
608 <blockquote>
609 data has appeared for this server endpoint from a
610 remote client, it can be found at *in and is
611 len bytes long
612 </blockquote>
613 <h3>LWS_CALLBACK_CLIENT_RECEIVE_PONG</h3>
614 <blockquote>
615 if you elected to see PONG packets,
616 they appear with this callback reason.  PONG
617 packets only exist in 04+ protocol
618 </blockquote>
619 <h3>LWS_CALLBACK_CLIENT_RECEIVE</h3>
620 <blockquote>
621 data has appeared from the server for the
622 client connection, it can be found at *in and
623 is len bytes long
624 </blockquote>
625 <h3>LWS_CALLBACK_HTTP</h3>
626 <blockquote>
627 an http request has come from a client that is not
628 asking to upgrade the connection to a websocket
629 one.  This is a chance to serve http content,
630 for example, to send a script to the client
631 which will then open the websockets connection.
632 <tt><b>in</b></tt> points to the URI path requested and
633 <b>libwebsockets_serve_http_file</b> makes it very
634 simple to send back a file to the client.
635 Normally after sending the file you are done
636 with the http connection, since the rest of the
637 activity will come by websockets from the script
638 that was delivered by http, so you will want to
639 return 1; to close and free up the connection.
640 That's important because it uses a slot in the
641 total number of client connections allowed set
642 by MAX_CLIENTS.
643 </blockquote>
644 <h3>LWS_CALLBACK_HTTP_FILE_COMPLETION</h3>
645 <blockquote>
646 a file requested to be send down
647 http link has completed.
648 </blockquote>
649 <h3>LWS_CALLBACK_SERVER_WRITEABLE</h3>
650 <blockquote>
651 If you call
652 <b>libwebsocket_callback_on_writable</b> on a connection, you will
653 get one of these callbacks coming when the connection socket
654 is able to accept another write packet without blocking.
655 If it already was able to take another packet without blocking,
656 you'll get this callback at the next call to the service loop
657 function.  Notice that CLIENTs get LWS_CALLBACK_CLIENT_WRITEABLE
658 and servers get LWS_CALLBACK_SERVER_WRITEABLE.
659 </blockquote>
660 <h3>LWS_CALLBACK_FILTER_NETWORK_CONNECTION</h3>
661 <blockquote>
662 called when a client connects to
663 the server at network level; the connection is accepted but then
664 passed to this callback to decide whether to hang up immediately
665 or not, based on the client IP.  <tt><b>user</b></tt> contains the connection
666 socket's descriptor.  Return non-zero to terminate
667 the connection before sending or receiving anything.
668 Because this happens immediately after the network connection
669 from the client, there's no websocket protocol selected yet so
670 this callback is issued only to protocol 0.
671 </blockquote>
672 <h3>LWS_CALLBACK_FILTER_PROTOCOL_CONNECTION</h3>
673 <blockquote>
674 called when the handshake has
675 been received and parsed from the client, but the response is
676 not sent yet.  Return non-zero to disallow the connection.
677 <tt><b>user</b></tt> is a pointer to an array of struct lws_tokens, you can
678 use the header enums lws_token_indexes from libwebsockets.h
679 to check for and read the supported header presence and
680 content before deciding to allow the handshake to proceed or
681 to kill the connection.
682 </blockquote>
683 <h3>LWS_CALLBACK_OPENSSL_LOAD_EXTRA_CLIENT_VERIFY_CERTS</h3>
684 <blockquote>
685 if configured for
686 including OpenSSL support, this callback allows your user code
687 to perform extra <b>SSL_CTX_load_verify_locations</b> or similar
688 calls to direct OpenSSL where to find certificates the client
689 can use to confirm the remote server identity.  <tt><b>user</b></tt> is the
690 OpenSSL SSL_CTX*
691 </blockquote>
692 <h3>LWS_CALLBACK_OPENSSL_LOAD_EXTRA_SERVER_VERIFY_CERTS</h3>
693 <blockquote>
694 if configured for
695 including OpenSSL support, this callback allows your user code
696 to load extra certifcates into the server which allow it to
697 verify the validity of certificates returned by clients.  <tt><b>user</b></tt>
698 is the server's OpenSSL SSL_CTX*
699 </blockquote>
700 <h3>LWS_CALLBACK_OPENSSL_PERFORM_CLIENT_CERT_VERIFICATION</h3>
701 <blockquote>
702 if the
703 libwebsockets context was created with the option
704 LWS_SERVER_OPTION_REQUIRE_VALID_OPENSSL_CLIENT_CERT, then this
705 callback is generated during OpenSSL verification of the cert
706 sent from the client.  It is sent to protocol[0] callback as
707 no protocol has been negotiated on the connection yet.
708 Notice that the libwebsockets context and wsi are both NULL
709 during this callback.  See
710 </blockquote>
711 <h3>http</h3>
712 <blockquote>
713 //www.openssl.org/docs/ssl/SSL_CTX_set_verify.html
714 to understand more detail about the OpenSSL callback that
715 generates this libwebsockets callback and the meanings of the
716 arguments passed.  In this callback, <tt><b>user</b></tt> is the x509_ctx,
717 <tt><b>in</b></tt> is the ssl pointer and <tt><b>len</b></tt> is preverify_ok
718 Notice that this callback maintains libwebsocket return
719 conventions, return 0 to mean the cert is OK or 1 to fail it.
720 This also means that if you don't handle this callback then
721 the default callback action of returning 0 allows the client
722 certificates.
723 </blockquote>
724 <h3>LWS_CALLBACK_CLIENT_APPEND_HANDSHAKE_HEADER</h3>
725 <blockquote>
726 this callback happens
727 when a client handshake is being compiled.  <tt><b>user</b></tt> is NULL,
728 <tt><b>in</b></tt> is a char **, it's pointing to a char * which holds the
729 next location in the header buffer where you can add
730 headers, and <tt><b>len</b></tt> is the remaining space in the header buffer,
731 which is typically some hundreds of bytes.  So, to add a canned
732 cookie, your handler code might look similar to:
733 <p>
734 char **p = (char **)in;
735 <p>
736 if (len &lt; 100)
737 return 1;
738 <p>
739 *p += sprintf(*p, "Cookie: a=b\x0d\x0a");
740 <p>
741 return 0;
742 <p>
743 Notice if you add anything, you just have to take care about
744 the CRLF on the line you added.  Obviously this callback is
745 optional, if you don't handle it everything is fine.
746 <p>
747 Notice the callback is coming to protocols[0] all the time,
748 because there is no specific protocol handshook yet.
749 </blockquote>
750 <h3>LWS_CALLBACK_CONFIRM_EXTENSION_OKAY</h3>
751 <blockquote>
752 When the server handshake code
753 sees that it does support a requested extension, before
754 accepting the extension by additing to the list sent back to
755 the client it gives this callback just to check that it's okay
756 to use that extension.  It calls back to the requested protocol
757 and with <tt><b>in</b></tt> being the extension name, <tt><b>len</b></tt> is 0 and <tt><b>user</b></tt> is
758 valid.  Note though at this time the ESTABLISHED callback hasn't
759 happened yet so if you initialize <tt><b>user</b></tt> content there, <tt><b>user</b></tt>
760 content during this callback might not be useful for anything.
761 Notice this callback comes to protocols[0].
762 </blockquote>
763 <h3>LWS_CALLBACK_CLIENT_CONFIRM_EXTENSION_SUPPORTED</h3>
764 <blockquote>
765 When a client
766 connection is being prepared to start a handshake to a server,
767 each supported extension is checked with protocols[0] callback
768 with this reason, giving the user code a chance to suppress the
769 claim to support that extension by returning non-zero.  If
770 unhandled, by default 0 will be returned and the extension
771 support included in the header to the server.  Notice this
772 callback comes to protocols[0].
773 <p>
774 The next four reasons are optional and only need taking care of if you
775 will be integrating libwebsockets sockets into an external polling
776 array.
777 </blockquote>
778 <h3>LWS_CALLBACK_ADD_POLL_FD</h3>
779 <blockquote>
780 libwebsocket deals with its <b>poll</b> loop
781 internally, but in the case you are integrating with another
782 server you will need to have libwebsocket sockets share a
783 polling array with the other server.  This and the other
784 POLL_FD related callbacks let you put your specialized
785 poll array interface code in the callback for protocol 0, the
786 first protocol you support, usually the HTTP protocol in the
787 serving case.  This callback happens when a socket needs to be
788 </blockquote>
789 <h3>added to the polling loop</h3>
790 <blockquote>
791 <tt><b>user</b></tt> contains the fd, and
792 <tt><b>len</b></tt> is the events bitmap (like, POLLIN).  If you are using the
793 internal polling loop (the "service" callback), you can just
794 ignore these callbacks.
795 </blockquote>
796 <h3>LWS_CALLBACK_DEL_POLL_FD</h3>
797 <blockquote>
798 This callback happens when a socket descriptor
799 needs to be removed from an external polling array.  <tt><b>user</b></tt> is
800 the socket desricptor.  If you are using the internal polling
801 loop, you can just ignore it.
802 </blockquote>
803 <h3>LWS_CALLBACK_SET_MODE_POLL_FD</h3>
804 <blockquote>
805 This callback happens when libwebsockets
806 wants to modify the events for the socket descriptor in <tt><b>user</b></tt>.
807 The handler should OR <tt><b>len</b></tt> on to the events member of the pollfd
808 struct for this socket descriptor.  If you are using the
809 internal polling loop, you can just ignore it.
810 </blockquote>
811 <h3>LWS_CALLBACK_CLEAR_MODE_POLL_FD</h3>
812 <blockquote>
813 This callback occurs when libwebsockets
814 wants to modify the events for the socket descriptor in <tt><b>user</b></tt>.
815 The handler should AND ~<tt><b>len</b></tt> on to the events member of the
816 pollfd struct for this socket descriptor.  If you are using the
817 internal polling loop, you can just ignore it.
818 </blockquote>
819 <hr>
820 <h2>extension_callback - Hooks to allow extensions to operate</h2>
821 <i>LWS_EXTERN int</i>
822 <b>extension_callback</b>
823 (<i>struct libwebsocket_context *</i> <b>context</b>,
824 <i>struct libwebsocket_extension *</i> <b>ext</b>,
825 <i>struct libwebsocket *</i> <b>wsi</b>,
826 <i>enum libwebsocket_extension_callback_reasons</i> <b>reason</b>,
827 <i>void *</i> <b>user</b>,
828 <i>void *</i> <b>in</b>,
829 <i>size_t</i> <b>len</b>)
830 <h3>Arguments</h3>
831 <dl>
832 <dt><b>context</b>
833 <dd>Websockets context
834 <dt><b>ext</b>
835 <dd>This extension
836 <dt><b>wsi</b>
837 <dd>Opaque websocket instance pointer
838 <dt><b>reason</b>
839 <dd>The reason for the call
840 <dt><b>user</b>
841 <dd>Pointer to per-session user data allocated by library
842 <dt><b>in</b>
843 <dd>Pointer used for some callback reasons
844 <dt><b>len</b>
845 <dd>Length set for some callback reasons
846 </dl>
847 <h3>Description</h3>
848 <blockquote>
849 Each extension that is active on a particular connection receives
850 callbacks during the connection lifetime to allow the extension to
851 operate on websocket data and manage itself.
852 <p>
853 Libwebsockets takes care of allocating and freeing "user" memory for
854 each active extension on each connection.  That is what is pointed to
855 by the <tt><b>user</b></tt> parameter.
856 </blockquote>
857 <h3>LWS_EXT_CALLBACK_CONSTRUCT</h3>
858 <blockquote>
859 called when the server has decided to
860 select this extension from the list provided by the client,
861 just before the server will send back the handshake accepting
862 the connection with this extension active.  This gives the
863 extension a chance to initialize its connection context found
864 in <tt><b>user</b></tt>.
865 </blockquote>
866 <h3>LWS_EXT_CALLBACK_CLIENT_CONSTRUCT</h3>
867 <blockquote>
868 same as LWS_EXT_CALLBACK_CONSTRUCT
869 but called when client is instantiating this extension.  Some
870 extensions will work the same on client and server side and then
871 you can just merge handlers for both CONSTRUCTS.
872 </blockquote>
873 <h3>LWS_EXT_CALLBACK_DESTROY</h3>
874 <blockquote>
875 called when the connection the extension was
876 being used on is about to be closed and deallocated.  It's the
877 last chance for the extension to deallocate anything it has
878 allocated in the user data (pointed to by <tt><b>user</b></tt>) before the
879 user data is deleted.  This same callback is used whether you
880 are in client or server instantiation context.
881 </blockquote>
882 <h3>LWS_EXT_CALLBACK_PACKET_RX_PREPARSE</h3>
883 <blockquote>
884 when this extension was active on
885 a connection, and a packet of data arrived at the connection,
886 it is passed to this callback to give the extension a chance to
887 change the data, eg, decompress it.  <tt><b>user</b></tt> is pointing to the
888 extension's private connection context data, <tt><b>in</b></tt> is pointing
889 to an lws_tokens struct, it consists of a char * pointer called
890 token, and an int called token_len.  At entry, these are
891 set to point to the received buffer and set to the content
892 length.  If the extension will grow the content, it should use
893 a new buffer allocated in its private user context data and
894 set the pointed-to lws_tokens members to point to its buffer.
895 </blockquote>
896 <h3>LWS_EXT_CALLBACK_PACKET_TX_PRESEND</h3>
897 <blockquote>
898 this works the same way as
899 LWS_EXT_CALLBACK_PACKET_RX_PREPARSE above, except it gives the
900 extension a chance to change websocket data just before it will
901 be sent out.  Using the same lws_token pointer scheme in <tt><b>in</b></tt>,
902 the extension can change the buffer and the length to be
903 transmitted how it likes.  Again if it wants to grow the
904 buffer safely, it should copy the data into its own buffer and
905 set the lws_tokens token pointer to it.
906 </blockquote>
907 <hr>
908 <h2>struct libwebsocket_protocols - List of protocols and handlers server supports.</h2>
909 <b>struct libwebsocket_protocols</b> {<br>
910 &nbsp; &nbsp; <i>const char *</i> <b>name</b>;<br>
911 &nbsp; &nbsp; <i>callback_function *</i> <b>callback</b>;<br>
912 &nbsp; &nbsp; <i>size_t</i> <b>per_session_data_size</b>;<br>
913 &nbsp; &nbsp; <i>struct libwebsocket_context *</i> <b>owning_server</b>;<br>
914 &nbsp; &nbsp; <i>int</i> <b>broadcast_socket_port</b>;<br>
915 &nbsp; &nbsp; <i>int</i> <b>broadcast_socket_user_fd</b>;<br>
916 &nbsp; &nbsp; <i>int</i> <b>protocol_index</b>;<br>
917 };<br>
918 <h3>Members</h3>
919 <dl>
920 <dt><b>name</b>
921 <dd>Protocol name that must match the one given in the client
922 Javascript new WebSocket(url, 'protocol') name
923 <dt><b>callback</b>
924 <dd>The service callback used for this protocol.  It allows the
925 service action for an entire protocol to be encapsulated in
926 the protocol-specific callback
927 <dt><b>per_session_data_size</b>
928 <dd>Each new connection using this protocol gets
929 this much memory allocated on connection establishment and
930 freed on connection takedown.  A pointer to this per-connection
931 allocation is passed into the callback in the 'user' parameter
932 <dt><b>owning_server</b>
933 <dd>the server init call fills in this opaque pointer when
934 registering this protocol with the server.
935 <dt><b>broadcast_socket_port</b>
936 <dd>the server init call fills this in with the
937 localhost port number used to forward broadcasts for this
938 protocol
939 <dt><b>broadcast_socket_user_fd</b>
940 <dd>the server init call fills this in ... the <b>main</b>
941 process context can write to this socket to perform broadcasts
942 (use the <b>libwebsockets_broadcast</b> api to do this instead,
943 it works from any process context)
944 <dt><b>protocol_index</b>
945 <dd>which protocol we are starting from zero
946 </dl>
947 <h3>Description</h3>
948 <blockquote>
949 This structure represents one protocol supported by the server.  An
950 array of these structures is passed to <b>libwebsocket_create_server</b>
951 allows as many protocols as you like to be handled by one server.
952 </blockquote>
953 <hr>
954 <h2>struct libwebsocket_extension - An extension we know how to cope with</h2>
955 <b>struct libwebsocket_extension</b> {<br>
956 &nbsp; &nbsp; <i>const char *</i> <b>name</b>;<br>
957 &nbsp; &nbsp; <i>extension_callback_function *</i> <b>callback</b>;<br>
958 &nbsp; &nbsp; <i>size_t</i> <b>per_session_data_size</b>;<br>
959 &nbsp; &nbsp; <i>void *</i> <b>per_context_private_data</b>;<br>
960 };<br>
961 <h3>Members</h3>
962 <dl>
963 <dt><b>name</b>
964 <dd>Formal extension name, eg, "deflate-stream"
965 <dt><b>callback</b>
966 <dd>Service callback
967 <dt><b>per_session_data_size</b>
968 <dd>Libwebsockets will auto-malloc this much
969 memory for the use of the extension, a pointer
970 to it comes in the <tt><b>user</b></tt> callback parameter
971 <dt><b>per_context_private_data</b>
972 <dd>Optional storage for this externsion that
973 is per-context, so it can track stuff across
974 all sessions, etc, if it wants
975 </dl>
976 <hr>