diff options
author | YAMAMOTO Takashi <yamamoto@valinux.co.jp> | 2013-09-18 16:58:17 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2013-09-20 09:43:20 +0900 |
commit | 435d701861358368db8966f511463e79ee38bb31 (patch) | |
tree | 449823575e6494c6d25e50ec455751bec2f77168 | |
parent | 35c0ca1083640cb7dc7fc5c7e2b5680d3d007d6e (diff) |
comment on OFP_xxx_PORT
Signed-off-by: YAMAMOTO Takashi <yamamoto@valinux.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r-- | ryu/ofproto/ofproto_common.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ryu/ofproto/ofproto_common.py b/ryu/ofproto/ofproto_common.py index 49d1c12a..cc3820dc 100644 --- a/ryu/ofproto/ofproto_common.py +++ b/ryu/ofproto/ofproto_common.py @@ -21,5 +21,7 @@ OFP_HEADER_PACK_STR = '!BBHI' OFP_HEADER_SIZE = 8 assert calcsize(OFP_HEADER_PACK_STR) == OFP_HEADER_SIZE +# note: while IANA assigned port number for OpenFlow is 6653, +# 6633 is (still) the defacto standard. OFP_TCP_PORT = 6633 OFP_SSL_PORT = 6633 |