summaryrefslogtreecommitdiffstats
path: root/include/osmocom/vty
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-07-19 14:31:44 +0200
committerHarald Welte <laforge@gnumonks.org>2011-07-19 14:31:44 +0200
commit892e621fec571c7cba3573caa0d328ed1b25d8ee (patch)
treec50a44d55d6d8132afaf258c802a970e51d9a6f1 /include/osmocom/vty
parentc5a0ded53fe359ff4436db72e6aca5ab35927891 (diff)
make sure we don't have namespace clashes between libraries and apps
* All loging prefixes in libraries should be DL like DLINP * All signals / subsystems should be called S_L_* SS_L_* * All command nodes should be called L_*_NODE This makes sure existinc code still compiles as expected
Diffstat (limited to 'include/osmocom/vty')
-rw-r--r--include/osmocom/vty/command.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/osmocom/vty/command.h b/include/osmocom/vty/command.h
index 4104d76c..a6c2c5c4 100644
--- a/include/osmocom/vty/command.h
+++ b/include/osmocom/vty/command.h
@@ -74,8 +74,8 @@ enum node_type {
VTY_NODE, /* Vty node. */
- E1INP_NODE, /* E1 line in libosmo-abis. */
- IPA_NODE, /* IPA proxying commands in libosmo-abis. */
+ L_E1INP_NODE, /* E1 line in libosmo-abis. */
+ L_IPA_NODE, /* IPA proxying commands in libosmo-abis. */
_LAST_OSMOVTY_NODE
};