summaryrefslogtreecommitdiffstats
path: root/data/mnet/Common/include/MnetProductId.h
blob: 3ee33af58fb03151cc43d5fa91222554f1ebaaf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
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_ */