summaryrefslogtreecommitdiffstats
path: root/data/mnet/Common/include/MnetProductId.h
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-07-09 16:09:18 +0200
committerHarald Welte <laforge@gnumonks.org>2010-07-09 16:09:18 +0200
commit903a15fc26e225c2559c98eba362e29f09de3d2c (patch)
tree5680b3c68a728df86092a5b8a4756625724025c3 /data/mnet/Common/include/MnetProductId.h
import source code of Vovida GSML project (from www.vovida.org)HEADgsml-1_0master
This is the source code as it was published on vovida.org a couple of years ago. The filename was gsml-1_0.tar.bz2
Diffstat (limited to 'data/mnet/Common/include/MnetProductId.h')
-rw-r--r--data/mnet/Common/include/MnetProductId.h102
1 files changed, 102 insertions, 0 deletions
diff --git a/data/mnet/Common/include/MnetProductId.h b/data/mnet/Common/include/MnetProductId.h
new file mode 100644
index 0000000..3ee33af
--- /dev/null
+++ b/data/mnet/Common/include/MnetProductId.h
@@ -0,0 +1,102 @@
+/*********************************************************************/
+/* */
+/* (c) Copyright Cisco 2000 */
+/* All Rights Reserved */
+/* */
+/*********************************************************************/
+
+/*********************************************************************/
+/* */
+/* Version : 1.0 */
+/* Status : Under development */
+/* File : ProductId.h */
+/* Author(s) : Bhawani Sapkota */
+/* Create Date : 9/18/2000 */
+/* Description : This file contains MNET product IDs */
+/* */
+/*********************************************************************/
+/* REVISION HISTORY
+/*___________________________________________________________________*/
+/*----------+--------+-----------------------------------------------*/
+/* Name | Date | Reason */
+/*----------+--------+-----------------------------------------------*/
+/* Bhawani |10/16/00| Initial Draft */
+/*----------+--------+-----------------------------------------------*/
+/*********************************************************************/
+
+
+#if !defined(_MNETRODUCTID_H_)
+#define _MNETRODUCTID_H_
+
+typedef enum {
+ MNET_PRODUCT_GP10,
+ MNET_PRODUCT_GMC,
+ MNET_PRODUCT_GS,
+ MNET_PRODUCT_ITP,
+ MNET_PRODUCT_MAXID // always needs to be the last in this
+}MNETProductId_t;
+
+
+#ifdef __cplusplus
+inline
+#else
+static
+#endif
+char *GetMnetProductName(MNETProductId_t id)
+{
+
+ switch (id)
+ {
+ case MNET_PRODUCT_GP10:
+ return "Gsm Port 10 Series (GP10)";
+ break;
+
+ case MNET_PRODUCT_GMC:
+ return "GSM Mobility Controller (GMC)";
+ break;
+
+ case MNET_PRODUCT_GS:
+ return "Serving GPRS Support Node (SGSN)";
+ break;
+
+ case MNET_PRODUCT_ITP:
+ return "IP Transfer Point (ITP)";
+ break;
+ }
+
+ return("Unknown Product ID");
+}
+
+
+#ifdef __cplusplus
+inline
+#else
+static
+#endif
+
+char *GetMnetProductRelativeDirName(MNETProductId_t id)
+{
+
+ switch (id)
+ {
+ case MNET_PRODUCT_GP10:
+ return "Gp10";
+ break;
+
+ case MNET_PRODUCT_GMC:
+ return "Gmc";
+ break;
+
+ case MNET_PRODUCT_GS:
+ return "Gs";
+ break;
+
+ case MNET_PRODUCT_ITP:
+ return "Itp";
+ break;
+ }
+
+ return("Unknown");
+}
+
+#endif /* _MNETRODUCTID_H_ */