treewide: Remove trailing whitespace
[sliver-openvswitch.git] / lib / unixctl.h
index 24a9d8c..2ab9a68 100644 (file)
@@ -16,7 +16,7 @@
 
 #ifndef UNIXCTL_H
 #define UNIXCTL_H 1
+
 #ifdef  __cplusplus
 extern "C" {
 #endif
@@ -39,12 +39,13 @@ const char *unixctl_client_target(const struct unixctl_client *);
 
 /* Command registration. */
 struct unixctl_conn;
+typedef void unixctl_cb_func(struct unixctl_conn *,
+                             const char *args, void *aux);
 void unixctl_command_register(const char *name,
-                              void (*cb)(struct unixctl_conn *,
-                                         const char *args));
+                              unixctl_cb_func *cb, void *aux);
 void unixctl_command_reply(struct unixctl_conn *, int code,
                            const char *body);
+
 #ifdef  __cplusplus
 }
 #endif