Upload the contribution of vstf as bottleneck network framework.
[bottlenecks.git] / vstf / vstf / controller / settings / forwarding_settings.py
1 #!/usr/bin/python
2 # -*- coding: utf8 -*-
3 # author: wly
4 # date: 2015/11/19
5 # see license for license details
6
7 import logging
8
9 import vstf.controller.settings.settings as sets
10
11 LOG = logging.getLogger(__name__)
12
13
14 class ForwardingSettings(sets.Settings):
15     def __init__(self, path="/etc/vstf/perf/",
16                  filename="sw_perf.forwarding-settings",
17                  mode=sets.SETS_SINGLE):
18         super(ForwardingSettings, self).__init__(path, filename, mode)