add HIDDEN configuration for developer.

...
    GTP: 1,
    OTHERS: 1,
  }

  HIDDEN:
  {
    DISABLE_HSS: 0,
    DISABLE_SGW: 0,
    DISABLE_PGW: 0,
  }

  HSS :
  {

if epcd or testepc, DISABLE_HSS/SGW/PGW is applied.
This commit is contained in:
Sukchan Lee 2017-08-03 19:50:20 +09:00
parent fcc4a7bca0
commit 59999dcb4f
4 changed files with 49 additions and 8 deletions

View file

@ -37,6 +37,13 @@ typedef struct _context_t {
int s6a;
int others;
} trace_level;
struct {
int disable_hss;
int disable_sgw;
int disable_pgw;
} hidden;
} context_t;
CORE_DECLARE(status_t) context_init(void);