~ubuntu-branches/ubuntu/saucy/neutron/saucy-security

« back to all changes in this revision

Viewing changes to neutron/plugins/linuxbridge/common/constants.py

  • Committer: Package Import Robot
  • Author(s): James Page, Yolanda Robla, Chuck Short, James Page
  • Date: 2013-10-03 15:18:04 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20131003151804-ho3t21wv16l8402y
Tags: 1:2013.2~rc1-0ubuntu1
[ Yolanda Robla ]
* debian/tests: added testing agents

[ Chuck Short ]
* debian/patches/disable-udev-tests.patch: Refreshed.
* debian/patches/disable-ml2-notification-tests.patch: Refreshed.
* debian/control:
  - Dropped python-setuptools-git python-netifaces, and python-nose from
    build dependencies.
  - Dropped python-configobj, python-gflags from binary dependencies.
  - Added build python-requests python-six, and python-jinja2 build
    dependencies.
  - Added versioned dependencies for python-amqplib,
    python-pbr, python-novaclient, python-cliff,
    python-testtools, and python-eventlet.
  - Bumped versioned depends for python-stevedore, pyhton-novaclient,
    python-oslo.config, and testrepository

[ James Page ]
* New upstream release candidate:
  - d/patches: Refreshed.
* d/rules: unpatch/patch neutron.conf around test execution to ensure that
  as many tests as possible actually pass.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
# Values for network_type
24
24
TYPE_FLAT = 'flat'
25
25
TYPE_VLAN = 'vlan'
 
26
TYPE_VXLAN = 'vxlan'
26
27
TYPE_LOCAL = 'local'
27
28
TYPE_NONE = 'none'
28
29
 
 
30
# Supported VXLAN features
 
31
VXLAN_NONE = 'not_supported'
 
32
VXLAN_MCAST = 'multicast_flooding'
 
33
VXLAN_UCAST = 'unicast_flooding'
 
34
 
 
35
# Corresponding minimal kernel versions requirements
 
36
MIN_VXLAN_KVER = {VXLAN_MCAST: '3.8', VXLAN_UCAST: '3.11'}
 
37
 
29
38
 
30
39
# TODO(rkukura): Eventually remove this function, which provides
31
40
# temporary backward compatibility with pre-Havana RPC and DB vlan_id