summaryrefslogtreecommitdiffstats
path: root/lib/sender.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sender.h')
-rw-r--r--lib/sender.h55
1 files changed, 26 insertions, 29 deletions
diff --git a/lib/sender.h b/lib/sender.h
index 88aaf3a..d1b4083 100644
--- a/lib/sender.h
+++ b/lib/sender.h
@@ -21,52 +21,49 @@ extern "C" {
struct icipc_sender;
-typedef void (*icipc_sender_lost_conn_func_t) (struct icipc_sender *self,
- int receiver_fd,
- void *data);
+typedef void (*icipc_sender_lost_conn_func_t)(
+ struct icipc_sender *self,
+ int receiver_fd,
+ void *data);
-typedef void (*icipc_sender_reply_func_t) (struct icipc_sender *self,
- const uint8_t *buffer,
- size_t size,
- void *data);
+typedef void (*icipc_sender_reply_func_t)(
+ struct icipc_sender *self,
+ const uint8_t *buffer,
+ size_t size,
+ void *data);
ICIPC_API
-struct icipc_sender *
-icipc_sender_new (const char *path,
- size_t buffer_size,
- icipc_sender_lost_conn_func_t lost_func,
- void *lost_data,
- size_t user_size);
+struct icipc_sender *icipc_sender_new(
+ const char *path,
+ size_t buffer_size,
+ icipc_sender_lost_conn_func_t lost_func,
+ void *lost_data,
+ size_t user_size);
ICIPC_API
-void
-icipc_sender_free (struct icipc_sender *self);
+void icipc_sender_free(struct icipc_sender *self);
ICIPC_API
-bool
-icipc_sender_connect (struct icipc_sender *self);
+bool icipc_sender_connect(struct icipc_sender *self);
ICIPC_API
-void
-icipc_sender_disconnect (struct icipc_sender *self);
+void icipc_sender_disconnect(struct icipc_sender *self);
ICIPC_API
-bool
-icipc_sender_is_connected (struct icipc_sender *self);
+bool icipc_sender_is_connected(struct icipc_sender *self);
ICIPC_API
-bool
-icipc_sender_send (struct icipc_sender *self,
- const uint8_t *buffer,
- size_t size,
- icipc_sender_reply_func_t reply,
- void *data);
+bool icipc_sender_send(
+ struct icipc_sender *self,
+ const uint8_t *buffer,
+ size_t size,
+ icipc_sender_reply_func_t reply,
+ void *data);
/* for subclasses only */
ICIPC_API
-void *
-icipc_sender_get_user_data (struct icipc_sender *self);
+void *icipc_sender_get_user_data(struct icipc_sender *self);
#ifdef __cplusplus
}