]> granicus.if.org Git - libnl/commitdiff
python: remove unnecessary callback type definitions
authorArend van Spriel <arend@broadcom.com>
Thu, 5 Sep 2013 12:11:28 +0000 (14:11 +0200)
committerThomas Graf <tgraf@suug.ch>
Thu, 5 Sep 2013 15:46:00 +0000 (17:46 +0200)
Copied the typedefs when adding callback support, but they serve
no actual use in the swig input file.

Signed-off-by: Arend van Spriel <arend@broadcom.com>
Signed-off-by: Thomas Graf <tgraf@suug.ch>
python/netlink/capi.i

index 507c220ac8f6a2a01b1a8b3712bef23fbc91da40..1e13d46fd197f88993f8b433bd46fb6a158268ef 100644 (file)
@@ -539,24 +539,6 @@ struct nlmsgerr {
 
 %{
 
-/**
- * nl_recvmsgs() callback for message processing customization
- * @ingroup cb
- * @arg msg            netlink message being processed
- * @arg arg            argument passwd on through caller
- */
-typedef int (*nl_recvmsg_msg_cb_t)(struct nl_msg *msg, void *arg);
-
-/**
- * nl_recvmsgs() callback for error message processing customization
- * @ingroup cb
- * @arg nla            netlink address of the peer
- * @arg nlerr          netlink error message being processed
- * @arg arg            argument passed on through caller
- */
-typedef int (*nl_recvmsg_err_cb_t)(struct sockaddr_nl *nla,
-                                  struct nlmsgerr *nlerr, void *arg);
-
 struct pynl_callback {
        PyObject *cbf;
        PyObject *cba;