|
@@ -23,7 +23,7 @@ handling, etc... The Connector driver allows any kernelspace agents to use
|
|
|
netlink based networking for inter-process communication in a significantly
|
|
|
easier way:
|
|
|
|
|
|
-int cn_add_callback(struct cb_id *id, char *name, void (*callback) (void *));
|
|
|
+int cn_add_callback(struct cb_id *id, char *name, void (*callback) (struct cn_msg *, struct netlink_skb_parms *));
|
|
|
void cn_netlink_send(struct cn_msg *msg, u32 __group, int gfp_mask);
|
|
|
|
|
|
struct cb_id
|
|
@@ -53,15 +53,15 @@ struct cn_msg
|
|
|
Connector interfaces.
|
|
|
/*****************************************/
|
|
|
|
|
|
-int cn_add_callback(struct cb_id *id, char *name, void (*callback) (void *));
|
|
|
+int cn_add_callback(struct cb_id *id, char *name, void (*callback) (struct cn_msg *, struct netlink_skb_parms *));
|
|
|
|
|
|
Registers new callback with connector core.
|
|
|
|
|
|
struct cb_id *id - unique connector's user identifier.
|
|
|
It must be registered in connector.h for legal in-kernel users.
|
|
|
char *name - connector's callback symbolic name.
|
|
|
- void (*callback) (void *) - connector's callback.
|
|
|
- Argument must be dereferenced to struct cn_msg *.
|
|
|
+ void (*callback) (struct cn..) - connector's callback.
|
|
|
+ cn_msg and the sender's credentials
|
|
|
|
|
|
|
|
|
void cn_del_callback(struct cb_id *id);
|