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: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8a83c003025711d906d0b1710b49e580257f4c10;p=openvswitch Print OpenFlow ref. impl. and protocol versions at secchan startup time. Bug #83. --- diff --git a/secchan/secchan.c b/secchan/secchan.c index af52ed5e..3cb10067 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);