X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=utilities%2Fnlmon.c;h=b6396d50b9da8c89bfa864ac031db7864e59904d;hb=135faefe4af624489ac310810a5ffb5223606252;hp=d5e743f75206f418d19502e0e9977c8579bee3de;hpb=a0bc29a541fc7dc6e20137d5558e2094d614e6ab;p=sliver-openvswitch.git diff --git a/utilities/nlmon.c b/utilities/nlmon.c index d5e743f75..b6396d50b 100644 --- a/utilities/nlmon.c +++ b/utilities/nlmon.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2010 Nicira Networks. + * Copyright (c) 2009, 2010, 2011 Nicira Networks. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -24,6 +24,7 @@ #include #include #include "netlink.h" +#include "netlink-socket.h" #include "ofpbuf.h" #include "poll-loop.h" #include "timeval.h" @@ -42,15 +43,18 @@ main(int argc OVS_UNUSED, char *argv[]) int error; set_program_name(argv[0]); - time_init(); - vlog_init(); - vlog_set_levels(VLM_ANY_MODULE, VLF_ANY_FACILITY, VLL_DBG); + vlog_set_levels(NULL, VLF_ANY_FACILITY, VLL_DBG); - error = nl_sock_create(NETLINK_ROUTE, RTNLGRP_LINK, 0, 0, &sock); + error = nl_sock_create(NETLINK_ROUTE, &sock); if (error) { ovs_fatal(error, "could not create rtnetlink socket"); } + error = nl_sock_join_mcgroup(sock, RTNLGRP_LINK); + if (error) { + ovs_fatal(error, "could not join RTNLGRP_LINK multicast group"); + } + for (;;) { struct ofpbuf *buf;