¡@

Home 

OpenStack Study: constants.py

OpenStack Index

**** CubicPower OpenStack Study ****

def interpret_vlan_id(vlan_id):

    """Return (network_type, segmentation_id) tuple for encoded vlan_id."""

    if vlan_id == LOCAL_VLAN_ID:

        return (p_const.TYPE_LOCAL, None)

    elif vlan_id == FLAT_VLAN_ID:

        return (p_const.TYPE_FLAT, None)

    else:

        return (p_const.TYPE_VLAN, vlan_id)