23 lines
414 B
C
23 lines
414 B
C
#ifndef _GTS_INFO_H_
|
|
#define _GTS_INFO_H_
|
|
|
|
// GTS
|
|
#ifdef _LGU
|
|
#define G_CENTERADDR "cs-gts.x-cdn.com"
|
|
#define G_CENTERADDR_PORT 80
|
|
#else
|
|
#define G_CENTERADDR "cc-gts.ktsh.co.kr"
|
|
#define G_CENTERADDR_PORT 80
|
|
#endif
|
|
|
|
// TIME
|
|
#ifdef _LGU
|
|
#define SNTP_DOMAIN "cs-time.x-cdn.com"
|
|
#define SNTP_PORT 80
|
|
#else
|
|
#define SNTP_DOMAIN "cc-time.ktsh.co.kr"
|
|
#define SNTP_PORT 80
|
|
#endif
|
|
|
|
#endif // _GTS_INFO_H_
|