source: ReferenceDesigns/w3_802.11/python/wlan_exp/config.py

Last change on this file was 6320, checked in by chunter, 5 years ago

1.8.0 release wlan-exp

File size: 1.4 KB
Line 
1# -*- coding: utf-8 -*-
2"""
3------------------------------------------------------------------------------
4Mango 802.11 Reference Design Experiments Framework - Newtork / Node Configurations
5------------------------------------------------------------------------------
6License:   Copyright 2019 Mango Communications, Inc. All rights reserved.
7           Use and distribution subject to terms in LICENSE.txt
8------------------------------------------------------------------------------
9
10This module provides class definitions to manage the configuration of
11 wlan_exp node objects and network interfaces.
12
13Functions (see below for more information):
14    WlanExpNetworkConfiguration() -- Specifies Network information for setup
15    WlanExpNodesConfiguration()   -- Specifies Node information for setup
16"""
17
18__all__ = ['WlanExpNetworkConfiguration', 'WlanExpNodesConfiguration']
19
20# WlanExpNetworkConfiguration and WlanExpNodesConfiguration used to be a subclasses of
21#  NetworkConfiguration and NodesConfiguration, but didn't do anything except call the
22#  superclass init. The renames below are a half-step to merging wlan_exp.transport.config
23#  into wlan_exp.config
24from wlan_exp.transport.config import NetworkConfiguration as WlanExpNetworkConfiguration
25from wlan_exp.transport.config import NodesConfiguration as WlanExpNodesConfiguration
26
27# End Class
Note: See TracBrowser for help on using the repository browser.