-bringing copyright tags up to FSF standard
[oweals/gnunet.git] / src / include / gnunet_server_lib.h
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2009-2013 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file include/gnunet_server_lib.h
23  * @brief library for building GNUnet network servers
24  * @author Christian Grothoff
25  * @defgroup server functions for a server that communicates with clients
26  * @{
27  */
28
29 #ifndef GNUNET_SERVER_LIB_H
30 #define GNUNET_SERVER_LIB_H
31
32 #ifdef __cplusplus
33 extern "C"
34 {
35 #if 0                           /* keep Emacsens' auto-indent happy */
36 }
37 #endif
38 #endif
39
40 #include "gnunet_common.h"
41 #include "gnunet_connection_lib.h"
42
43
44 /**
45  * Largest supported message (to be precise, one byte more
46  * than the largest possible message, so tests involving
47  * this value should check for messages being smaller than
48  * this value).
49  */
50 #define GNUNET_SERVER_MAX_MESSAGE_SIZE 65536
51
52 /**
53  * Smallest supported message.
54  */
55 #define GNUNET_SERVER_MIN_BUFFER_SIZE sizeof (struct GNUNET_MessageHeader)
56
57 /**
58  * @brief handle for a server
59  */
60 struct GNUNET_SERVER_Handle;
61
62 /**
63  * @brief opaque handle for a client of the server
64  */
65 struct GNUNET_SERVER_Client;
66
67 /**
68  * @brief opaque handle server returns for aborting transmission to a client.
69  */
70 struct GNUNET_SERVER_TransmitHandle;
71
72
73 /**
74  * Functions with this signature are called whenever a message is
75  * received.
76  *
77  * @param cls closure
78  * @param client identification of the client
79  * @param message the actual message
80  */
81 typedef void
82 (*GNUNET_SERVER_MessageCallback) (void *cls,
83                                   struct GNUNET_SERVER_Client *client,
84                                   const struct GNUNET_MessageHeader *message);
85
86
87 /**
88  * Message handler.  Each struct specifies how to handle on particular
89  * type of message received.
90  */
91 struct GNUNET_SERVER_MessageHandler
92 {
93   /**
94    * Function to call for messages of "type".
95    */
96   GNUNET_SERVER_MessageCallback callback;
97
98   /**
99    * Closure argument for @e callback.
100    */
101   void *callback_cls;
102
103   /**
104    * Type of the message this handler covers.
105    */
106   uint16_t type;
107
108   /**
109    * Expected size of messages of this type.  Use 0 for
110    * variable-size.  If non-zero, messages of the given
111    * type will be discarded (and the connection closed)
112    * if they do not have the right size.
113    */
114   uint16_t expected_size;
115
116 };
117
118
119 /**
120  * Create a new server.
121  *
122  * @param access function for access control
123  * @param access_cls closure for @a access
124  * @param lsocks NULL-terminated array of listen sockets
125  * @param idle_timeout after how long should we timeout idle connections?
126  * @param require_found if #GNUNET_YES, connections sending messages of unknown type
127  *        will be closed
128  * @return handle for the new server, NULL on error
129  *         (typically, "port" already in use)
130  */
131 struct GNUNET_SERVER_Handle *
132 GNUNET_SERVER_create_with_sockets (GNUNET_CONNECTION_AccessCheck access,
133                                    void *access_cls,
134                                    struct GNUNET_NETWORK_Handle **lsocks,
135                                    struct GNUNET_TIME_Relative idle_timeout,
136                                    int require_found);
137
138 /**
139  * Create a new server.
140  *
141  * @param access function for access control
142  * @param access_cls closure for @a access
143  * @param server_addr address toes listen on (including port), NULL terminated array
144  * @param socklen lengths of respective @a server_addr
145  * @param idle_timeout after how long should we timeout idle connections?
146  * @param require_found if #GNUNET_YES, connections sending messages of unknown type
147  *        will be closed
148  * @return handle for the new server, NULL on error
149  *         (typically, "port" already in use)
150  */
151 struct GNUNET_SERVER_Handle *
152 GNUNET_SERVER_create (GNUNET_CONNECTION_AccessCheck access, void *access_cls,
153                       struct sockaddr *const *server_addr,
154                       const socklen_t * socklen,
155                       struct GNUNET_TIME_Relative idle_timeout,
156                       int require_found);
157
158
159 /**
160  * Suspend accepting connections from the listen socket temporarily.
161  * Resume activity using #GNUNET_SERVER_resume.
162  *
163  * @param server server to stop accepting connections.
164  */
165 void
166 GNUNET_SERVER_suspend (struct GNUNET_SERVER_Handle *server);
167
168
169 /**
170  * Resume accepting connections from the listen socket.
171  *
172  * @param server server to resume accepting connections.
173  */
174 void
175 GNUNET_SERVER_resume (struct GNUNET_SERVER_Handle *server);
176
177
178 /**
179  * Stop the listen socket and get ready to shutdown the server once
180  * only clients marked using #GNUNET_SERVER_client_mark_monitor are
181  * left.
182  *
183  * @param server server to stop listening on
184  */
185 void
186 GNUNET_SERVER_stop_listening (struct GNUNET_SERVER_Handle *server);
187
188
189 /**
190  * Free resources held by this server.
191  *
192  * @param server server to destroy
193  */
194 void
195 GNUNET_SERVER_destroy (struct GNUNET_SERVER_Handle *server);
196
197
198 /**
199  * Add additional handlers to an existing server.
200  *
201  * @param server the server to add handlers to
202  * @param handlers array of message handlers for
203  *        incoming messages; the last entry must
204  *        have "NULL" for the "callback"; multiple
205  *        entries for the same type are allowed,
206  *        they will be called in order of occurence.
207  *        These handlers can be removed later;
208  *        the handlers array must exist until removed
209  *        (or server is destroyed).
210  */
211 void
212 GNUNET_SERVER_add_handlers (struct GNUNET_SERVER_Handle *server,
213                             const struct GNUNET_SERVER_MessageHandler *handlers);
214
215
216 /**
217  * Notify us when the server has enough space to transmit
218  * a message of the given size to the given client.
219  *
220  * @param client client to transmit message to
221  * @param size requested amount of buffer space
222  * @param timeout after how long should we give up (and call
223  *        notify with buf NULL and size 0)?
224  * @param callback function to call when space is available
225  * @param callback_cls closure for @a callback
226  * @return non-NULL if the notify callback was queued; can be used
227  *           to cancel the request using
228  *           #GNUNET_SERVER_notify_transmit_ready_cancel.
229  *         NULL if we are already going to notify someone else (busy)
230  */
231 struct GNUNET_SERVER_TransmitHandle *
232 GNUNET_SERVER_notify_transmit_ready (struct GNUNET_SERVER_Client *client,
233                                      size_t size,
234                                      struct GNUNET_TIME_Relative timeout,
235                                      GNUNET_CONNECTION_TransmitReadyNotify callback,
236                                      void *callback_cls);
237
238
239 /**
240  * Abort transmission request.
241  *
242  * @param th request to abort
243  */
244 void
245 GNUNET_SERVER_notify_transmit_ready_cancel (struct GNUNET_SERVER_TransmitHandle *th);
246
247
248 /**
249  * Set the 'monitor' flag on this client.  Clients which have been
250  * marked as 'monitors' won't prevent the server from shutting down
251  * once #GNUNET_SERVER_stop_listening has been invoked.  The idea is
252  * that for "normal" clients we likely want to allow them to process
253  * their requests; however, monitor-clients are likely to 'never'
254  * disconnect during shutdown and thus will not be considered when
255  * determining if the server should continue to exist after
256  * #GNUNET_SERVER_destroy has been called.
257  *
258  * @param client the client to set the 'monitor' flag on
259  */
260 void
261 GNUNET_SERVER_client_mark_monitor (struct GNUNET_SERVER_Client *client);
262
263
264 /**
265  * Set the persistent flag on this client, used to setup client
266  * connection to only be killed when the process of the service it's
267  * connected to is actually dead.  This API is used during shutdown
268  * signalling within ARM, and it is not expected that typical users
269  * of the API would need this function.
270  *
271  * @param client the client to set the persistent flag on
272  */
273 void
274 GNUNET_SERVER_client_persist_ (struct GNUNET_SERVER_Client *client);
275
276
277 /**
278  * Resume receiving from this client, we are done processing the
279  * current request.  This function must be called from within each
280  * #GNUNET_SERVER_MessageCallback (or its respective continuations).
281  *
282  * @param client client we were processing a message of
283  * @param success #GNUNET_OK to keep the connection open and
284  *                          continue to receive
285  *                #GNUNET_NO to close the connection (normal behavior)
286  *                #GNUNET_SYSERR to close the connection (signal
287  *                          serious error)
288  */
289 void
290 GNUNET_SERVER_receive_done (struct GNUNET_SERVER_Client *client,
291                             int success);
292
293
294 /**
295  * Change the timeout for a particular client.  Decreasing the timeout
296  * may not go into effect immediately (only after the previous timeout
297  * times out or activity happens on the socket).
298  *
299  * @param client the client to update
300  * @param timeout new timeout for activities on the socket
301  */
302 void
303 GNUNET_SERVER_client_set_timeout (struct GNUNET_SERVER_Client *client,
304                                   struct GNUNET_TIME_Relative timeout);
305
306
307 /**
308  * Return user context associated with the given client.
309  * Note: you should probably use the macro (call without the underscore).
310  *
311  * @param client client to query
312  * @param size number of bytes in user context struct (for verification only)
313  * @return pointer to user context
314  */
315 void *
316 GNUNET_SERVER_client_get_user_context_ (struct GNUNET_SERVER_Client *client,
317                                         size_t size);
318
319
320 /**
321  * Set user context to be associated with the given client.
322  * Note: you should probably use the macro (call without the underscore).
323  *
324  * @param client client to query
325  * @param ptr pointer to user context
326  * @param size number of bytes in user context struct (for verification only)
327  */
328 void
329 GNUNET_SERVER_client_set_user_context_ (struct GNUNET_SERVER_Client *client,
330                                         void *ptr,
331                                         size_t size);
332
333
334 /**
335  * Return user context associated with the given client.
336  *
337  * @param client client to query
338  * @param type expected return type (i.e. 'struct Foo')
339  * @return pointer to user context of type 'type *'.
340  */
341 #define GNUNET_SERVER_client_get_user_context(client,type)              \
342   (type *) GNUNET_SERVER_client_get_user_context_ (client, sizeof (type))
343
344 /**
345  * Set user context to be associated with the given client.
346  *
347  * @param client client to query
348  * @param value pointer to user context
349  */
350 #define GNUNET_SERVER_client_set_user_context(client,value)             \
351   GNUNET_SERVER_client_set_user_context_ (client, value, sizeof (*value))
352
353
354 /**
355  * Disable the warning the server issues if a message is not acknowledged
356  * in a timely fashion.  Use this call if a client is intentionally delayed
357  * for a while.  Only applies to the current message.
358  *
359  * @param client client for which to disable the warning
360  */
361 void
362 GNUNET_SERVER_disable_receive_done_warning (struct GNUNET_SERVER_Client
363                                             *client);
364
365
366 /**
367  * Inject a message into the server, pretend it came
368  * from the specified client.  Delivery of the message
369  * will happen instantly (if a handler is installed;
370  * otherwise the call does nothing).
371  *
372  * @param server the server receiving the message
373  * @param sender the "pretended" sender of the message
374  *        can be NULL!
375  * @param message message to transmit
376  * @return #GNUNET_OK if the message was OK and the
377  *                   connection can stay open
378  *         #GNUNET_SYSERR if the connection to the
379  *         client should be shut down
380  */
381 int
382 GNUNET_SERVER_inject (struct GNUNET_SERVER_Handle *server,
383                       struct GNUNET_SERVER_Client *sender,
384                       const struct GNUNET_MessageHeader *message);
385
386
387 /**
388  * Add a TCP socket-based connection to the set of handles managed by
389  * this server.  Use this function for outgoing (P2P) connections that
390  * we initiated (and where this server should process incoming
391  * messages).
392  *
393  * @param server the server to use
394  * @param connection the connection to manage (client must
395  *        stop using this connection from now on)
396  * @return the client handle (client should call
397  *         #GNUNET_SERVER_client_drop on the return value eventually)
398  */
399 struct GNUNET_SERVER_Client *
400 GNUNET_SERVER_connect_socket (struct GNUNET_SERVER_Handle *server,
401                               struct GNUNET_CONNECTION_Handle *connection);
402
403
404 /**
405  * Notify the server that the given client handle should
406  * be kept (keeps the connection up if possible, increments
407  * the internal reference counter).
408  *
409  * @param client the client to keep
410  */
411 void
412 GNUNET_SERVER_client_keep (struct GNUNET_SERVER_Client *client);
413
414
415 /**
416  * Notify the server that the given client handle is no
417  * longer required.  Decrements the reference counter.  If
418  * that counter reaches zero an inactive connection maybe
419  * closed.
420  *
421  * @param client the client to drop
422  */
423 void
424 GNUNET_SERVER_client_drop (struct GNUNET_SERVER_Client *client);
425
426
427 /**
428  * Obtain the network address of the other party.
429  *
430  * @param client the client to get the address for
431  * @param addr where to store the address
432  * @param addrlen where to store the length of @a addr
433  * @return #GNUNET_OK on success
434  */
435 int
436 GNUNET_SERVER_client_get_address (struct GNUNET_SERVER_Client *client,
437                                   void **addr, size_t *addrlen);
438
439
440 /**
441  * Functions with this signature are called whenever a client
442  * is disconnected on the network level.
443  *
444  * @param cls closure
445  * @param client identification of the client; NULL
446  *        for the last call when the server is destroyed
447  */
448 typedef void (*GNUNET_SERVER_DisconnectCallback) (void *cls,
449                                                   struct GNUNET_SERVER_Client *client);
450
451
452 /**
453  * Functions with this signature are called whenever a client
454  * is connected on the network level.
455  *
456  * @param cls closure
457  * @param client identification of the client
458  */
459 typedef void (*GNUNET_SERVER_ConnectCallback) (void *cls,
460                                                struct GNUNET_SERVER_Client *client);
461
462
463 /**
464  * Ask the server to notify us whenever a client disconnects.
465  * This function is called whenever the actual network connection
466  * is closed; the reference count may be zero or larger than zero
467  * at this point.  If the server is destroyed before this
468  * notification is explicitly cancelled, the 'callback' will
469  * once be called with a 'client' argument of NULL to indicate
470  * that the server itself is now gone (and that the callback
471  * won't be called anymore and also can no longer be cancelled).
472  *
473  * @param server the server manageing the clients
474  * @param callback function to call on disconnect
475  * @param callback_cls closure for @a callback
476  */
477 void
478 GNUNET_SERVER_disconnect_notify (struct GNUNET_SERVER_Handle *server,
479                                  GNUNET_SERVER_DisconnectCallback callback,
480                                  void *callback_cls);
481
482
483 /**
484  * Ask the server to notify us whenever a client connects.
485  * This function is called whenever the actual network connection
486  * is opened. If the server is destroyed before this
487  * notification is explicitly cancelled, the @a callback will
488  * once be called with a 'client' argument of NULL to indicate
489  * that the server itself is now gone (and that the callback
490  * won't be called anymore and also can no longer be cancelled).
491  *
492  * @param server the server manageing the clients
493  * @param callback function to call on sconnect
494  * @param callback_cls closure for @a callback
495  */
496 void
497 GNUNET_SERVER_connect_notify (struct GNUNET_SERVER_Handle *server,
498                               GNUNET_SERVER_ConnectCallback callback,
499                               void *callback_cls);
500
501
502 /**
503  * Ask the server to stop notifying us whenever a client disconnects.
504  * Arguments must match exactly those given to
505  * #GNUNET_SERVER_disconnect_notify.  It is not necessary to call this
506  * function during shutdown of the server; in fact, most applications
507  * will never use this function.
508  *
509  * @param server the server manageing the clients
510  * @param callback function to call on disconnect
511  * @param callback_cls closure for @a callback
512  */
513 void
514 GNUNET_SERVER_disconnect_notify_cancel (struct GNUNET_SERVER_Handle *server,
515                                         GNUNET_SERVER_DisconnectCallback callback,
516                                         void *callback_cls);
517
518
519 /**
520  * Ask the server to stop notifying us whenever a client connects.
521  * Arguments must match exactly those given to
522  * #GNUNET_SERVER_connect_notify.  It is not necessary to call this
523  * function during shutdown of the server; in fact, most applications
524  * will never use this function.
525  *
526  * @param server the server manageing the clients
527  * @param callback function to call on connect
528  * @param callback_cls closure for @a callback
529  */
530 void
531 GNUNET_SERVER_connect_notify_cancel (struct GNUNET_SERVER_Handle *server,
532                                      GNUNET_SERVER_ConnectCallback callback,
533                                      void *callback_cls);
534
535
536 /**
537  * Ask the server to disconnect from the given client.  This is the
538  * same as passing #GNUNET_SYSERR to #GNUNET_SERVER_receive_done,
539  * except that it allows dropping of a client even when not handling a
540  * message from that client.
541  *
542  * @param client the client to disconnect from
543  */
544 void
545 GNUNET_SERVER_client_disconnect (struct GNUNET_SERVER_Client *client);
546
547
548 /**
549  * Disable the "CORK" feature for communication with the given client,
550  * forcing the OS to immediately flush the buffer on transmission
551  * instead of potentially buffering multiple messages.
552  *
553  * @param client handle to the client
554  * @return #GNUNET_OK on success
555  */
556 int
557 GNUNET_SERVER_client_disable_corking (struct GNUNET_SERVER_Client *client);
558
559
560 /**
561  * The tansmit context is the key datastructure for a conveniance API
562  * used for transmission of complex results to the client followed
563  * ONLY by signaling receive_done with success or error
564  */
565 struct GNUNET_SERVER_TransmitContext;
566
567
568 /**
569  * Create a new transmission context for the given client.
570  *
571  * @param client client to create the context for.
572  * @return NULL on error
573  */
574 struct GNUNET_SERVER_TransmitContext *
575 GNUNET_SERVER_transmit_context_create (struct GNUNET_SERVER_Client *client);
576
577
578 /**
579  * Append a message to the transmission context.
580  * All messages in the context will be sent by
581  * the #GNUNET_SERVER_transmit_context_run method.
582  *
583  * @param tc context to use
584  * @param data what to append to the result message
585  * @param length length of @a data
586  * @param type type of the message
587  */
588 void
589 GNUNET_SERVER_transmit_context_append_data (struct GNUNET_SERVER_TransmitContext *tc,
590                                             const void *data,
591                                             size_t length, uint16_t type);
592
593
594 /**
595  * Append a message to the transmission context.
596  * All messages in the context will be sent by
597  * the transmit_context_run method.
598  *
599  * @param tc context to use
600  * @param msg message to append
601  */
602 void
603 GNUNET_SERVER_transmit_context_append_message (struct GNUNET_SERVER_TransmitContext *tc,
604                                                const struct GNUNET_MessageHeader *msg);
605
606
607 /**
608  * Execute a transmission context.  If there is an error in the
609  * transmission, the receive_done method will be called with an error
610  * code (#GNUNET_SYSERR), otherwise with #GNUNET_OK.
611  *
612  * @param tc transmission context to use
613  * @param timeout when to time out and abort the transmission
614  */
615 void
616 GNUNET_SERVER_transmit_context_run (struct GNUNET_SERVER_TransmitContext *tc,
617                                     struct GNUNET_TIME_Relative timeout);
618
619
620 /**
621  * Destroy a transmission context.  This function must not be called
622  * after #GNUNET_SERVER_transmit_context_run.
623  *
624  * @param tc transmission context to destroy
625  * @param success code to give to #GNUNET_SERVER_receive_done  for
626  *        the client: #GNUNET_OK to keep the connection open and
627  *                          continue to receive
628  *                #GNUNET_NO to close the connection (normal behavior)
629  *                #GNUNET_SYSERR to close the connection (signal
630  *                          serious error)
631  */
632 void
633 GNUNET_SERVER_transmit_context_destroy (struct GNUNET_SERVER_TransmitContext *tc,
634                                         int success);
635
636
637 /**
638  * The notification context is the key datastructure for a conveniance
639  * API used for transmission of notifications to the client until the
640  * client disconnects or is disconnected (or the notification context
641  * is destroyed, in which case we disconnect these clients).
642  * Essentially, all (notification) messages are queued up until the
643  * client is able to read them.
644  */
645 struct GNUNET_SERVER_NotificationContext;
646
647
648 /**
649  * Create a new notification context.
650  *
651  * @param server server for which this function creates the context
652  * @param queue_length maximum number of messages to keep in
653  *        the notification queue; optional messages are dropped
654  *        if the queue gets longer than this number of messages
655  * @return handle to the notification context
656  */
657 struct GNUNET_SERVER_NotificationContext *
658 GNUNET_SERVER_notification_context_create (struct GNUNET_SERVER_Handle *server,
659                                            unsigned int queue_length);
660
661
662 /**
663  * Destroy the context, force disconnect for all clients.
664  *
665  * @param nc context to destroy.
666  */
667 void
668 GNUNET_SERVER_notification_context_destroy (struct GNUNET_SERVER_NotificationContext *nc);
669
670
671 /**
672  * Add a client to the notification context.
673  *
674  * @param nc context to modify
675  * @param client client to add
676  */
677 void
678 GNUNET_SERVER_notification_context_add (struct GNUNET_SERVER_NotificationContext *nc,
679                                         struct GNUNET_SERVER_Client *client);
680
681
682 /**
683  * Send a message to a particular client; must have
684  * already been added to the notification context.
685  *
686  * @param nc context to modify
687  * @param client client to transmit to
688  * @param msg message to send
689  * @param can_drop can this message be dropped due to queue length limitations
690  */
691 void
692 GNUNET_SERVER_notification_context_unicast (struct GNUNET_SERVER_NotificationContext *nc,
693                                             struct GNUNET_SERVER_Client *client,
694                                             const struct GNUNET_MessageHeader *msg,
695                                             int can_drop);
696
697
698 /**
699  * Send a message to all clients of this context.
700  *
701  * @param nc context to modify
702  * @param msg message to send
703  * @param can_drop can this message be dropped due to queue length limitations
704  */
705 void
706 GNUNET_SERVER_notification_context_broadcast (struct GNUNET_SERVER_NotificationContext *nc,
707                                               const struct GNUNET_MessageHeader *msg,
708                                               int can_drop);
709
710
711 /**
712  * Return active number of subscribers in this context.
713  *
714  * @param nc context to query
715  * @return number of current subscribers
716  */
717 unsigned int
718 GNUNET_SERVER_notification_context_get_size (struct GNUNET_SERVER_NotificationContext *nc);
719
720
721 /**
722  * Handle to a message stream tokenizer.
723  */
724 struct GNUNET_SERVER_MessageStreamTokenizer;
725
726
727 /**
728  * Functions with this signature are called whenever a
729  * complete message is received by the tokenizer.
730  *
731  * Do not call #GNUNET_SERVER_mst_destroy from within
732  * the scope of this callback.
733  *
734  * @param cls closure
735  * @param client identification of the client
736  * @param message the actual message
737  * @return #GNUNET_OK on success, #GNUNET_SYSERR to stop further processing
738  */
739 typedef int (*GNUNET_SERVER_MessageTokenizerCallback) (void *cls, void *client,
740                                                        const struct GNUNET_MessageHeader *message);
741
742
743 /**
744  * Create a message stream tokenizer.
745  *
746  * @param cb function to call on completed messages
747  * @param cb_cls closure for @a cb
748  * @return handle to tokenizer
749  */
750 struct GNUNET_SERVER_MessageStreamTokenizer *
751 GNUNET_SERVER_mst_create (GNUNET_SERVER_MessageTokenizerCallback cb,
752                           void *cb_cls);
753
754
755 /**
756  * Add incoming data to the receive buffer and call the
757  * callback for all complete messages.
758  *
759  * @param mst tokenizer to use
760  * @param client_identity ID of client for which this is a buffer,
761  *        can be NULL (will be passed back to 'cb')
762  * @param buf input data to add
763  * @param size number of bytes in @a buf
764  * @param purge should any excess bytes in the buffer be discarded
765  *       (i.e. for packet-based services like UDP)
766  * @param one_shot only call callback once, keep rest of message in buffer
767  * @return #GNUNET_OK if we are done processing (need more data)
768  *         #GNUNET_NO if one_shot was set and we have another message ready
769  *         #GNUNET_SYSERR if the data stream is corrupt
770  */
771 int
772 GNUNET_SERVER_mst_receive (struct GNUNET_SERVER_MessageStreamTokenizer *mst,
773                            void *client_identity,
774                            const char *buf, size_t size,
775                            int purge, int one_shot);
776
777
778 /**
779  * Destroys a tokenizer.
780  *
781  * @param mst tokenizer to destroy
782  */
783 void
784 GNUNET_SERVER_mst_destroy (struct GNUNET_SERVER_MessageStreamTokenizer *mst);
785
786
787 /**
788  * Signature of a function to create a custom tokenizer.
789  *
790  * @param cls closure from #GNUNET_SERVER_set_callbacks
791  * @param client handle to client the tokenzier will be used for
792  * @return handle to custom tokenizer ('mst')
793  */
794 typedef void* (*GNUNET_SERVER_MstCreateCallback) (void *cls,
795                                                   struct GNUNET_SERVER_Client *client);
796
797
798 /**
799  * Signature of a function to destroy a custom tokenizer.
800  *
801  * @param cls closure from #GNUNET_SERVER_set_callbacks
802  * @param mst custom tokenizer handle
803  */
804 typedef void (*GNUNET_SERVER_MstDestroyCallback) (void *cls, void *mst);
805
806
807 /**
808  * Signature of a function to receive data for a custom tokenizer.
809  *
810  * @param cls closure from #GNUNET_SERVER_set_callbacks
811  * @param mst custom tokenizer handle
812  * @param client_identity ID of client for which this is a buffer,
813  *        can be NULL (will be passed back to 'cb')
814  * @param buf input data to add
815  * @param size number of bytes in @a buf
816  * @param purge should any excess bytes in the buffer be discarded
817  *       (i.e. for packet-based services like UDP)
818  * @param one_shot only call callback once, keep rest of message in buffer
819  * @return #GNUNET_OK if we are done processing (need more data)
820  *         #GNUNET_NO if one_shot was set and we have another message ready
821  *         #GNUNET_SYSERR if the data stream is corrupt
822  */
823 typedef int (*GNUNET_SERVER_MstReceiveCallback) (void *cls, void *mst,
824                                                  struct GNUNET_SERVER_Client *client,
825                                                  const char *buf, size_t size,
826                                                  int purge, int one_shot);
827
828
829 /**
830  * Change functions used by the server to tokenize the message stream.
831  * (very rarely used).
832  *
833  * @param server server to modify
834  * @param create new tokenizer initialization function
835  * @param destroy new tokenizer destruction function
836  * @param receive new tokenizer receive function
837  * @param cls closure for @a create, @a receive and @a destroy
838  */
839 void
840 GNUNET_SERVER_set_callbacks (struct GNUNET_SERVER_Handle *server,
841                              GNUNET_SERVER_MstCreateCallback create,
842                              GNUNET_SERVER_MstDestroyCallback destroy,
843                              GNUNET_SERVER_MstReceiveCallback receive,
844                              void *cls);
845
846
847 #if 0                           /* keep Emacsens' auto-indent happy */
848 {
849 #endif
850 #ifdef __cplusplus
851 }
852 #endif
853
854 /** @} */ /* end of group server */
855
856 /* ifndef GNUNET_SERVER_LIB_H */
857 #endif
858 /* end of gnunet_server_lib.h */