]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/fb-socket.h
Changed default configuration to include LibUCW and utils only
[libucw.git] / ucw / fb-socket.h
index b80086048acd24c835d8d32b14c078d94fcec7d3..033797a1bb29870a475923145719afd0ea46bc8f 100644 (file)
 #ifndef _UCW_FB_SOCKET_H
 #define _UCW_FB_SOCKET_H
 
-#include "ucw/fastbuf.h"
+#include <ucw/fastbuf.h>
 
-struct fbsock_params {
+struct fbsock_params { /** Configuration of socket fastbuf. **/
   int fd;
+  int fd_is_shared;
   uns bufsize;
   uns timeout_ms;
   void (*err)(void *data, uns flags, char *msg);
   void *data;                  // Passed to the err callback
 };
 
-enum fbsock_err_flags {
+enum fbsock_err_flags {        /** Description of a socket error **/
   FBSOCK_READ = 1,             // Happened during read
   FBSOCK_WRITE = 2,            // Happened during write
   FBSOCK_TIMEOUT = 4,          // The error is a timeout
 };
 
+/**
+ * Create a new socket fastbuf.
+ * All information is passed by @par.
+ **/
 struct fastbuf *fbsock_create(struct fbsock_params *par);
 
 #endif