Signed-off-by: Isaku Yamahata <[email protected]> --- ryu/app/rest_nw_id.py | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/ryu/app/rest_nw_id.py b/ryu/app/rest_nw_id.py index 5422c81..b39e104 100644 --- a/ryu/app/rest_nw_id.py +++ b/ryu/app/rest_nw_id.py @@ -1,5 +1,5 @@ # Copyright (C) 2011 Nippon Telegraph and Telephone Corporation. -# Copyright (C) 2011 Isaku Yamahata <yamahata at valinux co jp> +# Copyright (C) 2011,2012 Isaku Yamahata <yamahata at valinux co jp> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -14,8 +14,15 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. NW_ID_EXTERNAL = '__NW_ID_EXTERNAL__' +NW_ID_VPORT_GRE = '__NW_ID_VPORT_GRE__' NW_ID_UNKNOWN = '__NW_ID_UNKNOWN__' +RESERVED_NETWORK_IDS = ( + NW_ID_EXTERNAL, + NW_ID_VPORT_GRE, + NW_ID_UNKNOWN, + ) + # PORT_TYPE_VM = 'guestvm' # PORT_TYPE_GW = 'gateway' # PORT_TYPE_EXTERNAL = 'external' -- 1.7.1.1 ------------------------------------------------------------------------------ Better than sec? Nothing is better than sec when it comes to monitoring Big Data applications. Try Boundary one-second resolution app monitoring today. Free. http://p.sf.net/sfu/Boundary-dev2dev _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
