summaryrefslogtreecommitdiff
path: root/ipoe-util/ipses-delete.c
diff options
context:
space:
mode:
authorKozlov Dmitry <xeb@mail.ru>2012-07-10 18:58:53 +0400
committerKozlov Dmitry <xeb@mail.ru>2012-07-10 18:58:53 +0400
commit80c32d237e01b1c05663ccfa34003d2f49aa7eee (patch)
treea49da21b5219e4bc89d9794918f054f3620cb140 /ipoe-util/ipses-delete.c
parent64b5b693764c4f36870fd988ccbb53bcb188e74d (diff)
downloadaccel-ppp-80c32d237e01b1c05663ccfa34003d2f49aa7eee.tar.gz
accel-ppp-80c32d237e01b1c05663ccfa34003d2f49aa7eee.zip
initial session backup implementation
Diffstat (limited to 'ipoe-util/ipses-delete.c')
-rw-r--r--ipoe-util/ipses-delete.c58
1 files changed, 0 insertions, 58 deletions
diff --git a/ipoe-util/ipses-delete.c b/ipoe-util/ipses-delete.c
deleted file mode 100644
index 4e6a184..0000000
--- a/ipoe-util/ipses-delete.c
+++ /dev/null
@@ -1,58 +0,0 @@
-#include <netinet/in.h>
-#include <arpa/inet.h>
-#include <string.h>
-#include <errno.h>
-#include <stdio.h>
-
-#include <netlink/netlink.h>
-#include <netlink/genl/genl.h>
-#include <netlink/genl/ctrl.h>
-
-
-#include "ipoe.h"
-
-int main(int argc, char **argv)
-{
-#if LIBNL2
- struct nl_sock *h;
-#else
- struct nl_handle *h;
-#endif
- struct nl_msg *msg;
- int family;
- in_addr_t local;
- int err;
-
- if (argc != 2) {
- printf("usage: ipses-delete <addr>\n");
- return 1;
- }
-
- local = inet_addr(argv[1]);
-
-#if LIBNL2
- h = nl_socket_alloc();
-#else
- h = nl_handle_alloc();
-#endif
- genl_connect(h);
- family = genl_ctrl_resolve(h, IPOE_GENL_NAME);
-
- msg = nlmsg_alloc();
- genlmsg_put(msg, NL_AUTO_PID, NL_AUTO_SEQ, family, 0, NLM_F_REQUEST, IPOE_CMD_DELETE, IPOE_GENL_VERSION);
- nla_put_u32(msg, IPOE_ATTR_PEER_ADDR, local);
-
- nl_send_auto_complete(h, msg);
- err = nl_recvmsgs_default(h);
-#if LIBNL2
- printf("recv: %s\n", nl_geterror(err));
-#else
- nl_perror("recv");
-#endif
-
- nlmsg_free(msg);
- nl_close(h);
-
- return 0;
-}
-