face, mgmt: add channel status dataset publisher

Expose channel maps in protocol factories

Change-Id: I057b1bba638bfc9372867318653d71ba7d0e9888
Refs: #1631, #1653
This commit is contained in:
Steve DiBenedetto
2014-06-04 14:28:31 -06:00
committed by Alex Afanasyev
parent 08d07a764e
commit ef04f27892
28 changed files with 911 additions and 174 deletions
+3 -3
View File
@@ -64,7 +64,7 @@ def build(bld):
source=bld.path.ant_glob(['daemon/**/*.cpp'],
excl=['daemon/face/ethernet.cpp',
'daemon/face/unix-*.cpp',
'daemon/face/websocket-*.cpp']),
'daemon/face/websocket*.cpp']),
use='daemon-objects unit-tests-base unit-tests-main',
includes='.',
install_path=None,
@@ -77,14 +77,14 @@ def build(bld):
unit_tests_nfd.source += bld.path.ant_glob('daemon/face/unix-*.cpp')
if bld.env['HAVE_WEBSOCKET']:
unit_tests_nfd.source += bld.path.ant_glob('daemon/face/websocket-*.cpp')
unit_tests_nfd.source += bld.path.ant_glob('daemon/face/websocket*.cpp')
unit_tests_rib = bld.program(
target='../unit-tests-rib',
features='cxx cxxprogram',
source=bld.path.ant_glob(['rib/**/*.cpp']),
use='rib-objects unit-tests-base unit-tests-main',
includes=['.'],
includes='.',
install_path=None,
)