From: Ben Pfaff Date: Wed, 13 Aug 2008 21:37:36 +0000 (-0700) Subject: Print OpenFlow ref. impl. and protocol versions at secchan startup time. X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=8a83c003025711d906d0b1710b49e580257f4c10;p=sliver-openvswitch.git Print OpenFlow ref. impl. and protocol versions at secchan startup time. Bug #83. --- diff --git a/secchan/secchan.c b/secchan/secchan.c index af52ed5eb..3cb100678 100644 --- a/secchan/secchan.c +++ b/secchan/secchan.c @@ -206,6 +206,9 @@ main(int argc, char *argv[]) daemonize(); + VLOG_WARN("OpenFlow reference implementation version %s", VERSION); + VLOG_WARN("OpenFlow protocol version 0x%02x", OFP_VERSION); + /* Connect to datapath. */ local_rconn = rconn_create(0, s.max_backoff); rconn_connect(local_rconn, s.nl_name);