remove .svn and other
This commit is contained in:
@@ -1,503 +0,0 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <errno.h>
|
||||
#include <stdarg.h>
|
||||
#include <string.h>
|
||||
#include <ctype.h>
|
||||
#include <sys/types.h>
|
||||
#include <sys/time.h>
|
||||
#include <time.h>
|
||||
#include <sys/ipc.h>
|
||||
#include <sys/shm.h>
|
||||
#include <arpa/inet.h>
|
||||
#include <sys/socket.h>
|
||||
#include <sys/io.h>
|
||||
#include <netdb.h>
|
||||
#include "scoc_if.h"
|
||||
#include "../../../public/src/include/includes.h"
|
||||
|
||||
#ifndef _SCCP_CONST_DEF
|
||||
#define _SCCP_CONST_DEF
|
||||
|
||||
#define SCCP_CONF_FILE "./conf/sccp.conf"
|
||||
#define SINGLE_MODE 1
|
||||
#define spLogDebug_MASK 0xFFFFFFFF
|
||||
|
||||
|
||||
#define GetValueString(i,p,Maxtrix,IdMax) \
|
||||
{ \
|
||||
if( (i) >= (IdMax) ) \
|
||||
{ \
|
||||
(p) = (u8 *)Maxtrix[(IdMax)].pStr; \
|
||||
} \
|
||||
else \
|
||||
{ \
|
||||
(p) = (u8 *)Maxtrix[(i)].pStr; \
|
||||
} \
|
||||
}
|
||||
|
||||
|
||||
typedef enum SCCP_WATCH_DOG
|
||||
{
|
||||
WDS_RECV_PRI,
|
||||
|
||||
}
|
||||
SP_WatchDog;
|
||||
|
||||
#define SCCP_SHM_KEY 0x00116688
|
||||
#define SCCP_SHM_PERM 0666
|
||||
//#define SCCP_OID {1,3,6,1,4,1,1373,1,3,2,2,3}
|
||||
#define SCCP_OID {1,3,6,1,4,1,1373,2,3,2,3}
|
||||
#define SCCP_OIDLEN 11
|
||||
#define SCCP_SERNUM_LEN 4
|
||||
|
||||
/*Message type-----> */
|
||||
#define CR_MSG 1
|
||||
#define CC_MSG 2
|
||||
#define CREF_MSG 3
|
||||
#define RLSD_MSG 4
|
||||
#define RLC_MSG 5
|
||||
#define DT1_MSG 6
|
||||
#define DT2_MSG 7
|
||||
#define AK_MSG 8
|
||||
#define UDT_MSG 9
|
||||
#define UDTS_MSG 10
|
||||
#define ED_MSG 11
|
||||
#define EA_MSG 12
|
||||
#define RSR_MSG 13
|
||||
#define RSC_MSG 14
|
||||
#define ERR_MSG 15
|
||||
#define IT_MSG 16
|
||||
#define XUDT_MSG 17
|
||||
#define XUDTS_MSG 18
|
||||
#define LUDT_MSG 19
|
||||
#define LUDTS_MSG 20
|
||||
//Intra message type
|
||||
#define RF_MSG 100
|
||||
/*SCMG Message */
|
||||
#define SSA_MSG 1 //subsystem allowed
|
||||
#define SSP_MSG 2 //subsystem prohibited
|
||||
#define SST_MSG 3 //subsystem status test
|
||||
#define SOR_MSG 4 //subsystem out of service request
|
||||
#define SOG_MSG 5 //subsystem out of service grant
|
||||
#define SSC_MSG 6 //SCCP/subsystem congested
|
||||
/*SCCP parameter name codes */
|
||||
#define P_EOP 0
|
||||
#define P_DLR 1
|
||||
#define P_SLR 2
|
||||
#define P_CDA 3
|
||||
#define P_CGA 4
|
||||
#define P_PLC 5
|
||||
#define P_EOD 6
|
||||
#define P_PR 7
|
||||
#define P_SEQ 8
|
||||
#define P_Credit 9
|
||||
#define P_RLC 10
|
||||
#define P_RTC 11
|
||||
#define P_RSC 12
|
||||
#define P_ERC 13
|
||||
#define P_RFC 14
|
||||
#define P_Data 15
|
||||
#define P_SEG 16
|
||||
#define P_HC 17
|
||||
#define P_Importance 18
|
||||
#define P_Ldata 19
|
||||
//////////////////////////////////////////////////
|
||||
#define SCCP_SSN_NUM 256
|
||||
#define SCCP_RLSSN_NUM 128
|
||||
#define SCCP_RLSPC_NUM 64
|
||||
#define SCCP_ROUTE_NUM 1024
|
||||
#define SCCP_ROUTE_NODE_NUM 65535
|
||||
|
||||
#define LR_NUM 1024
|
||||
#define LR_MSG_NUM 50
|
||||
#define SS_MSG_NUM 1024
|
||||
#define SLS_NUM 16
|
||||
#define SCCP_MSG_MAXLEN 256
|
||||
#define MAX_HC 15
|
||||
#define SCOC_SSN 10
|
||||
|
||||
#define Unrestricted 1
|
||||
#define Restricted 0
|
||||
|
||||
#define RI_GT 0 //Route on GT
|
||||
#define RI_SSN 1 //Route on SSN
|
||||
|
||||
#define NP_IMSI 6
|
||||
#define NP_MSISDN 1
|
||||
#define NP_GT 7
|
||||
|
||||
#define TT_0 0
|
||||
#define TT_1 1
|
||||
#define TT_4 4
|
||||
//message source---->
|
||||
#define FROM_MTP 1
|
||||
#define FROM_SCLC 2
|
||||
#define FROM_SCOC 3
|
||||
#define FROM_SCMG 4
|
||||
//subsystem number
|
||||
#define SSN_NOTUSE 0
|
||||
#define SSN_SCMG 1
|
||||
#define SSN_ITU 2 //reserved for ITU-T allocation
|
||||
#define SSN_ISUP 3
|
||||
#define SSN_OMC 4
|
||||
#define SSN_MAP 5
|
||||
#define SSN_HLR 6
|
||||
#define SSN_VLR 7
|
||||
#define SSN_MSC 8
|
||||
#define SSN_EIC 9 //Equipment Identifier Certer
|
||||
#define SSN_RANAP 142
|
||||
#define SSN_AIF 254
|
||||
|
||||
//pool size
|
||||
#define SP_POOL_SIZE 3
|
||||
|
||||
//scoc state
|
||||
#define SCOC_IDLE 0
|
||||
#define SCOC_CPO 1 //connection pending outgoing
|
||||
#define SCOC_CPI 2 //connection pending incoming
|
||||
#define SCOC_CPMID 3 //connection pending(intermediate node)
|
||||
#define SCOC_WCC 4 //Wait connection confirm
|
||||
#define SCOC_ACTIVE 5 //Active
|
||||
#define SCOC_MID 6 //Active(intermediate node)
|
||||
#define SCOC_DP 7 //disconnect pending
|
||||
#define SCOC_DPMID 8 //disconnect pending(intermediate node)
|
||||
|
||||
#define SCOC_Interval 20*1000 //20ms
|
||||
//Timer (SCMG)
|
||||
#define T_idle 30 //(s)
|
||||
#define T_sst 2 //20s interval = 10s
|
||||
#define T_hbrecv 3 //30s interval = 10s
|
||||
|
||||
//#define SST_Start 0
|
||||
//#define SST_Pend 1
|
||||
//#define SST_Stop 2
|
||||
|
||||
//SP/SCCP/SS status
|
||||
#define ST_Disable 1
|
||||
#define ST_Congest 2
|
||||
#define ST_Enable 3
|
||||
|
||||
#define SCCPDB_TCAP 0x01
|
||||
#define SCCPDB_UDT 0x02
|
||||
#define SCCPDB_AIF 0x04
|
||||
#define SCCPDB_ERR 0x08
|
||||
#define SCCPDB_SCMG 0x10
|
||||
#define SCCPDB_TIME 0x20
|
||||
#define SCCPDB_SNMP 0x40
|
||||
#define SCCPDB_MSG 0x80
|
||||
#define SCCPDB_ADDR 0x100
|
||||
#define SCCPDB_STP 0x1000
|
||||
#define SCCPDB_USER 0x2000
|
||||
#define SCCPDB_MTP3 0x4000
|
||||
#define SCCPDB_XUDT 0x8000
|
||||
|
||||
/*******************Release cause*******************/
|
||||
#define RL_EUO 0 //end user originated
|
||||
#define RL_EUC 1 //end user congestion
|
||||
#define RL_EUF 2 //end user failure
|
||||
#define RL_SUO 3 //SCCP user originated
|
||||
#define RL_RPL 4 //remote procedure error
|
||||
#define RL_ICD 5 //inconsistent connection data
|
||||
#define RL_AF 6 //access failure
|
||||
#define RL_AC 7 //access congestion
|
||||
#define RL_SF 8 //subsystem failure
|
||||
#define RL_SC 9 //subsystem congestion
|
||||
#define RL_MF 10 //MTP failure
|
||||
#define RL_NC 11 //network congestion
|
||||
#define RL_EORT 12 //expiration of reset timer
|
||||
#define RL_EORIT 13 //expriation of receive inactivity timer
|
||||
#define RL_R 14 //reserved
|
||||
#define RL_U 15 //unqualified
|
||||
#define RL_SCCPF 16 //SCCP failure
|
||||
|
||||
/*******************return cause*******************/
|
||||
#define RT_NTFN 0 //no translation for an address of such nature
|
||||
#define RT_NTFA 1 //no translation for this specific address
|
||||
#define RT_SC 2 //subsystem congestion
|
||||
#define RT_SF 3 //subsystem failure
|
||||
#define RT_UU 4 //unequipped user
|
||||
#define RT_MF 5 //MTP failure
|
||||
#define RT_NF 6 //network congestion
|
||||
#define RT_U 7 //unqulified
|
||||
#define RT_EIMT 8 //error in message transport
|
||||
#define RT_EILP 9 //error in local processing
|
||||
#define RT_DCPR 10 //destination cannot perform reassembly
|
||||
#define RT_SCCPF 11 //SCCP failure
|
||||
#define RT_HCV 12 //hop counter violation
|
||||
#define RT_SNS 13 //segmentation not supported
|
||||
#define RT_SMTF 14 //segmentation failure
|
||||
|
||||
/*******************reset cause*******************/
|
||||
#define RS_EUO 0 //end user originated
|
||||
#define RS_SUO 1 //SCCP user originated
|
||||
#define RS_IPS 2 //incorrect P(S)
|
||||
#define RS_IPR 3 //incorrect P(R)
|
||||
#define RS_OFW 4 //remote procedure error-message out of window
|
||||
#define RS_IPSAI 5 //remote procedure error-incorrect P(S) after initialization
|
||||
#define RS_G 6 //remote procedure error-general
|
||||
#define RS_REUO 7 //remote end user operational
|
||||
#define RS_NO 8 //network operational
|
||||
#define RS_AO 9 //access operational
|
||||
#define RS_NC 10 //network congestion
|
||||
#define RS_R 11 //reserved
|
||||
#define RS_U 12 //unqualified
|
||||
|
||||
#endif
|
||||
|
||||
static const StringVal spUlPrimitiveStr[] =
|
||||
{
|
||||
{N_UNITDATA_REQ , "N-Unit Data Request "},
|
||||
{N_UNITDATA_IND , "N-Unit Data Indicate "},
|
||||
{N_NOTICE_IND , "N-Notice Indicate "},
|
||||
{N_CONNECT_REQ , "N-Connect Request "},
|
||||
{N_CONNECT_IND , "N-Connect Indicate "},
|
||||
{N_CONNECT_RSP , "N-Connect Response "},
|
||||
{N_CONNECT_CFM , "N-Connect Confirm "},
|
||||
{N_DISCONNECT_REQ, "N-Disconnect Request "},
|
||||
{N_DISCONNECT_IND, "N-Disconnect Indicate"},
|
||||
{N_DATA_REQ , "N-DATA Request "},
|
||||
{N_DATA_IND , "N-DATA Indicate "},
|
||||
{N_DATAAK_REQ , "N-DataAk Request "},
|
||||
{N_DATAAK_IND , "N-DataAk Indicate "},
|
||||
{N_EDATA_REQ , "N-EData Request "},
|
||||
{N_EDATA_IND , "N-EData Indicate "},
|
||||
{N_RESET_REQ , "N-Reset Request "},
|
||||
{N_RESET_IND , "N-Reset Indicate "},
|
||||
{N_RESET_RSP , "N-Reset Response "},
|
||||
{N_RESET_CFM , "N-Reset Confirm "},
|
||||
{N_INFORM_REQ , "N-Inform Request "},
|
||||
{N_INFORM_IND , "N-Inform Indicate "},
|
||||
{SPUI_PRI_MAX , "Unknow SCCP Primitive"},
|
||||
};
|
||||
|
||||
#define spGetUlPrimitiveStr(e,p)\
|
||||
GetValueString(e,p,spUlPrimitiveStr,SPUI_PRI_MAX)
|
||||
|
||||
typedef enum SCOC_MESSAGE_TYPE
|
||||
{
|
||||
SP_MSG0_RESERVED, /* Reserved */
|
||||
SP_MSG_CR = 1, /* connection request */
|
||||
SP_MSG_CC = 2, /* connection confirm */
|
||||
SP_MSG_CREF = 3, /* connection refused */
|
||||
SP_MSG_RLSD = 4, /* release request */
|
||||
SP_MSG_RLC = 5, /* release confirm */
|
||||
SP_MSG_DT1 = 6, /* Data Form 1 */
|
||||
SP_MSG_DT2 = 7, /* Data Form 2 */
|
||||
SP_MSG_AK = 8, /* Data acknowledge */
|
||||
SP_MSG_UDT = 9, /* Unit data */
|
||||
SP_MSG_UDTS = 10, /* Unit data */
|
||||
SP_MSG_ED = 11, /* Expedited data */
|
||||
SP_MSG_EA = 12, /* Expedited data acknowledge */
|
||||
SP_MSG_RSR = 13, /* Reset request */
|
||||
SP_MSG_RSC = 14, /* Reset confirm */
|
||||
SP_MSG_ERR = 15, /* PDU error */
|
||||
SP_MSG_IT = 16, /* Inactivity test */
|
||||
SP_MSG_XUDT = 17, /* XUDT */
|
||||
SP_MSG_XUDTS= 18, /* XUDTS */
|
||||
SP_MSG_LUDT = 19, /* LUDT */
|
||||
SP_MSG_LUDTS= 20, /* LUDTS */
|
||||
SP_MSG_RF = 21, /* Routing Fail */
|
||||
SP_MSG_MAX , /* MAX message type undefine */
|
||||
}
|
||||
CO_MsgType;
|
||||
|
||||
static const StringVal sp_messagetype_str[] =
|
||||
{
|
||||
{SP_MSG0_RESERVED, " Message Reserved" },
|
||||
{SP_MSG_CR, " Connection request" },
|
||||
{SP_MSG_CC, " Connection confirm" },
|
||||
{SP_MSG_CREF, " Connection refused" },
|
||||
{SP_MSG_RLSD, " Release request" },
|
||||
{SP_MSG_RLC, " Release confirm" },
|
||||
{SP_MSG_DT1, " Data Form 1" },
|
||||
{SP_MSG_DT2, " Data Form 2" },
|
||||
{SP_MSG_AK, " Data acknowledge" },
|
||||
{SP_MSG_UDT, " Unit data" },
|
||||
{SP_MSG_UDTS, " Unit data service" },
|
||||
{SP_MSG_ED, " Data acknowledge" },
|
||||
{SP_MSG_EA, " EData acknowledge" },
|
||||
{SP_MSG_RSR, " Reset request" },
|
||||
{SP_MSG_RSC, " Reset confirm" },
|
||||
{SP_MSG_ERR, " PDU error" },
|
||||
{SP_MSG_IT, " Inactivity test" },
|
||||
{SP_MSG_XUDT, " XUDT" },
|
||||
{SP_MSG_XUDTS, " XUDTS" },
|
||||
{SP_MSG_LUDT, " LUDT" },
|
||||
{SP_MSG_LUDTS, " LUDTS" },
|
||||
{SP_MSG_RF , " Routing Fail" },
|
||||
{SP_MSG_MAX, " Undefine" },
|
||||
};
|
||||
|
||||
#define spGetMsgStr(MsgId,pStr)\
|
||||
GetValueString(MsgId,pStr,sp_messagetype_str,SP_MSG_MAX)
|
||||
|
||||
//temp define , define in pub_base.h
|
||||
#define STR(s) #s
|
||||
#define FILL_VALSTR(n) {n,#n}
|
||||
|
||||
static const StringVal spTimerOutStr[] =
|
||||
{
|
||||
FILL_VALSTR(T_CONNEST_OUT),
|
||||
FILL_VALSTR(T_IAS_OUT),
|
||||
FILL_VALSTR(T_IAR_OUT),
|
||||
FILL_VALSTR(T_REPEATE_RLS_OUT),
|
||||
FILL_VALSTR(T_RLS_OUT),
|
||||
FILL_VALSTR(T_RESET_OUT),
|
||||
FILL_VALSTR(T_GUARD_OUT),
|
||||
FILL_VALSTR(T_INTERNAL_OUT),
|
||||
FILL_VALSTR(SPTM_PRI_MAX),
|
||||
};
|
||||
|
||||
#define spGetTimerOutStr(MsgId,pStr)\
|
||||
GetValueString(((MsgId)-SPCR_PRI_MAX-1),pStr,spTimerOutStr,SPTM_PRI_MAX)
|
||||
|
||||
|
||||
#define T_UNDEFINE 100000
|
||||
|
||||
#define T_SP_10ms 1
|
||||
#define T_SP_1s T_SP_10ms*100
|
||||
#define T_SP_1MIN T_SP_1s*60
|
||||
#define T_CONNEST_MAX T_SP_1s*2 //1~2 sec
|
||||
#define T_IAS_MAX T_SP_1MIN*5 //5~10 mins
|
||||
#define T_IAR_MAX T_SP_1MIN*11 //11~21 mins
|
||||
#define T_RLS_MAX T_SP_1s*15 //10~20 sec
|
||||
#define T_REPEATE_RLS_MAX T_SP_1s*15 //10~20 sec
|
||||
#define T_RESET_MAX T_SP_1s*15 //10~20 sec
|
||||
#define T_GUARD_MAX T_SP_1MIN*24 //23~25 mins
|
||||
#define T_INTERNAL_MAX T_SP_1MIN //1 mins
|
||||
|
||||
typedef enum SCOC_TRANSITION_STATUS
|
||||
{
|
||||
CO_STATUS_INIT, //Transtion initialed
|
||||
CO_STATUS_IDLE, //status Idle
|
||||
CO_STATUS_WTCC, //Wait Connection confirm
|
||||
CO_STATUS_ACTV, //Active
|
||||
CO_STATUS_CONP, //Connection pending
|
||||
CO_STATUS_CPIC, //Connection pending incoming
|
||||
CO_STATUS_CPOG, //Connection pending outgoing
|
||||
CO_STATUS_DSCP, //Disconnect pending
|
||||
CO_STATUS_DPIC, //Disconnect pending incoming
|
||||
CO_STATUS_DPOG, //Disconnect pending outgoing
|
||||
CO_STATUS_DPBH, //Disconnect pending both
|
||||
CO_STATUS_NMOP, //Normal operation
|
||||
CO_STATUS_WSEA, //Wait for sending EA Message
|
||||
CO_STATUS_RSIC, //Reset outgoing
|
||||
CO_STATUS_RSOG, //Reset incoming
|
||||
CO_STATUS_RSBH, //Reset both
|
||||
CO_STATUS_MTBK, //Maintenance blocking
|
||||
CO_STATUS_RSTA, //Restart
|
||||
CO_STATUS_MAX,
|
||||
}
|
||||
CO_Status;
|
||||
|
||||
static const StringVal sp_co_state_str[] =
|
||||
{
|
||||
{CO_STATUS_INIT, "Transtion initialed" },
|
||||
{CO_STATUS_IDLE, "status Idle" },
|
||||
{CO_STATUS_WTCC, "Wait Connection confirm" },
|
||||
{CO_STATUS_ACTV, "Active" },
|
||||
{CO_STATUS_CONP, "Connection pending " },
|
||||
{CO_STATUS_CPIC, "Connection pending incoming"},
|
||||
{CO_STATUS_CPOG, "Connection pending outgoing"},
|
||||
{CO_STATUS_DSCP, "Disconnect pending" },
|
||||
{CO_STATUS_DPIC, "Disconnect pending incoming"},
|
||||
{CO_STATUS_DPOG, "Disconnect pending outgoing"},
|
||||
{CO_STATUS_DPBH, "Disconnect pending both" },
|
||||
{CO_STATUS_NMOP, "Normal operation" },
|
||||
{CO_STATUS_WSEA, "Wait for sending EA Message"},
|
||||
{CO_STATUS_RSIC, "Reset outgoing" },
|
||||
{CO_STATUS_RSOG, "Reset incoming" },
|
||||
{CO_STATUS_RSBH, "Reset both" },
|
||||
{CO_STATUS_MTBK, "Maintenance blocking" },
|
||||
{CO_STATUS_RSTA, "Restart" },
|
||||
{CO_STATUS_MAX, "Error Transtion state" },
|
||||
};
|
||||
|
||||
#define spGetCoStateStr(s,p)\
|
||||
GetValueString(s,p,sp_co_state_str,CO_STATUS_MAX)
|
||||
|
||||
typedef enum CO_INSTANCE_SIDE
|
||||
{
|
||||
CO_INST_SIDE_ORG,
|
||||
CO_INST_SIDE_DST,
|
||||
CO_INST_SIDE_MID,
|
||||
CO_INST_SIDE_MAX,
|
||||
}
|
||||
CO_InstSide;
|
||||
|
||||
static const StringVal sp_co_instanceside_str[] =
|
||||
{
|
||||
{CO_INST_SIDE_ORG, "Originating node side" },
|
||||
{CO_INST_SIDE_DST, "Destination node side" },
|
||||
{CO_INST_SIDE_MID, "intermidediate node side"},
|
||||
{CO_INST_SIDE_MAX, "Undefine Node Side" },
|
||||
};
|
||||
|
||||
#define spGetCoInstanceSide(s,p)\
|
||||
GetValueString(s,p,sp_co_instanceside_str,CO_INST_SIDE_MAX)
|
||||
|
||||
static const StringVal co_reason_str[] = {
|
||||
//reason : originated network serice provider
|
||||
{REA_PDISC_ACNN,
|
||||
"disconnection <20>Cabnormal condition(non-transient nature)" },
|
||||
{REA_PDISC_ACTN, "disconnection <20>Cabnormal condition of transient nature"},
|
||||
{REA_PDISC_IS, "disconnection <20>Cinvalid state1" },
|
||||
{REA_PDISC_RIP, "disconnection <20>Crelease in progress1" },
|
||||
{REA_PCREF_DAU, "CREF2 <20>Cdestination address unknown " },
|
||||
{REA_PCREF_DINC,
|
||||
"CREF2 <20>Cdestination inaccessible/non-transient condition" },
|
||||
{REA_PCREF_DITCs, "CREF2 <20>Cdestination inaccessible/transient condition" },
|
||||
{REA_PCREF_QNANC, "CREF2 <20>CQOS not available/non-transient condition" },
|
||||
{REA_PCREF_QNATC, "CREF2 <20>CQOS not available/transient condition" },
|
||||
{REA_PCREF_RUNC, "CREF2 <20>Creason unspecified/non-transient condition" },
|
||||
{REA_PCREF_RUTC, "CREF2 <20>Creason unspecified/transient condition" },
|
||||
{REA_PCREF_LE, "CREF2 <20>Clocal error1" },
|
||||
{REA_PCREF_IS, "CREF2 <20>Cinvalid state1" },
|
||||
{REA_PCREF_NT, "CREF2 <20>Cno translation1" },
|
||||
{REA_PCREF_IRP, "CREF2 <20>Cin restart phase1" },
|
||||
{REA_PCREF_HCV, "CREF2 <20>Chop counter violation" },
|
||||
|
||||
//reason : originated network serice user
|
||||
{REA_UDISC_NC, "disconnection <20>Cnormal condition" },
|
||||
{REA_UDISC_ABC, "disconnection <20>Cabnormal condition" },
|
||||
{REA_UDISC_EUC, "disconnection <20>Cend user congestion" },
|
||||
{REA_UDISC_EUF, "disconnection <20>Cend user failure" },
|
||||
{REA_UDISC_SUO, "disconnection <20>CSCCP user originated" },
|
||||
{REA_UDISC_ACC, "disconnection <20>Caccess congestion" },
|
||||
{REA_UDISC_AF, "disconnection <20>Caccess failure" },
|
||||
{REA_UDISC_SC, "disconnection <20>Csubsystem congestion" },
|
||||
{REA_UCREF_NTC, "CREF2<EFBFBD>Cnon-transient condition" },
|
||||
{REA_UCREF_TC, "CREF2<EFBFBD>Ctransient condition" },
|
||||
{REA_UCREF_IIIN, "CREF2<EFBFBD>Cincompatible information in NSDUs" },
|
||||
{REA_UCREF_EUO, "CREF2<EFBFBD>Cend user originated" },
|
||||
{REA_UCREF_EUC, "CREF2<EFBFBD>Cend user congestion" },
|
||||
{REA_UCREF_EUF, "CREF2<EFBFBD>Cend user failure" },
|
||||
{REA_UCREF_SUO, "CREF2 <20>CSCCP user originated" },
|
||||
{REA_UCREF_ACC, "CREF2 <20>Caccess congestion" },
|
||||
{REA_UCREF_AF, "CREF2 <20>Caccess failure" },
|
||||
{REA_UCREF_SC, "CREF2 <20>Csubsystem congestion" },
|
||||
|
||||
//Notice service reason : N-inform values
|
||||
{REA_NINFO_FAIL, "work service provider failure" },
|
||||
{REA_NINFO_CONG, "work service congestion" },
|
||||
{REA_NINFO_PQC, "work service provider QOS change" },
|
||||
{REA_UINFO_FAIL, "work service user failure" },
|
||||
{REA_UINFO_CONG, "work service user congestion" },
|
||||
{REA_UINFO_PQC, "work service user QOS change" },
|
||||
{REA_INFO_USPC, "reason unspecified" },
|
||||
|
||||
{REA_UNDEFINED, "Undefined" },
|
||||
};
|
||||
|
||||
#define coGetReasonStr(r,p)\
|
||||
GetValueString(r,p,co_reason_str,REA_UNDEFINED)
|
||||
|
||||
|
||||
typedef enum SCOC_INTERNAL_ERROR
|
||||
{
|
||||
CO_FATAL_STATE,
|
||||
CO_FATAL_SIDE,
|
||||
}
|
||||
CO_InterErr;
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 55
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin
|
||||
END
|
||||
@@ -1,31 +0,0 @@
|
||||
10
|
||||
|
||||
dir
|
||||
114
|
||||
http://172.25.201.20/svn/wxc2/trunk/R4S/plat/sccp/ut/fsmtest/bin
|
||||
http://172.25.201.20/svn/wxc2
|
||||
|
||||
|
||||
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
4a7aa47d-8bee-446f-9599-049dc37ff264
|
||||
|
||||
conf
|
||||
dir
|
||||
|
||||
@@ -1,149 +0,0 @@
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 60
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf
|
||||
END
|
||||
hae_sys.conf
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 73
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/hae_sys.conf
|
||||
END
|
||||
cc_table.conf
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 74
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/cc_table.conf
|
||||
END
|
||||
map_operation.conf
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 79
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/map_operation.conf
|
||||
END
|
||||
map_acn.conf
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 73
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/map_acn.conf
|
||||
END
|
||||
help_page
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 70
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/help_page
|
||||
END
|
||||
ppsConf.txt
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 72
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/ppsConf.txt
|
||||
END
|
||||
smsc_sys.conf
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 74
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/smsc_sys.conf
|
||||
END
|
||||
hlr_parambit.conf
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 78
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/hlr_parambit.conf
|
||||
END
|
||||
HlrSysPara
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 71
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/HlrSysPara
|
||||
END
|
||||
wxc2exit.txt
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 73
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/wxc2exit.txt
|
||||
END
|
||||
xap_sysparam.conf
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 78
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/xap_sysparam.conf
|
||||
END
|
||||
profile
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 68
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/profile
|
||||
END
|
||||
menu_page
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 70
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/menu_page
|
||||
END
|
||||
system.ini
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 71
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/system.ini
|
||||
END
|
||||
smsc_csta.conf
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 75
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/smsc_csta.conf
|
||||
END
|
||||
iptrans.conf
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 73
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/iptrans.conf
|
||||
END
|
||||
wxc2_sys.conf
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 74
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/wxc2_sys.conf
|
||||
END
|
||||
conv_prefix.conf
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 77
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/conv_prefix.conf
|
||||
END
|
||||
mtp3.conf
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 70
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/mtp3.conf
|
||||
END
|
||||
cap_operation.conf
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 79
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/cap_operation.conf
|
||||
END
|
||||
cap_acn.conf
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 73
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/cap_acn.conf
|
||||
END
|
||||
smsc_parambit.conf
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 79
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/smsc_parambit.conf
|
||||
END
|
||||
sccp_test.conf
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 75
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/sccp_test.conf
|
||||
END
|
||||
sccp.conf
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 70
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf/sccp.conf
|
||||
END
|
||||
@@ -1,844 +0,0 @@
|
||||
10
|
||||
|
||||
dir
|
||||
114
|
||||
http://172.25.201.20/svn/wxc2/trunk/R4S/plat/sccp/ut/fsmtest/bin/conf
|
||||
http://172.25.201.20/svn/wxc2
|
||||
|
||||
|
||||
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
4a7aa47d-8bee-446f-9599-049dc37ff264
|
||||
|
||||
hae_sys.conf
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.250000Z
|
||||
649d3fce3992c1c1b43fc30172a7f2a7
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
116
|
||||
|
||||
cc_table.conf
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.265625Z
|
||||
9f0aa5dca95acac37a68fe54438fa684
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
4438
|
||||
|
||||
map_operation.conf
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.265625Z
|
||||
63cb6cdc86026f84ed0b86942c18579a
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
3089
|
||||
|
||||
map_acn.conf
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.281250Z
|
||||
ba98ac6b009e2c7e570ced416edb5508
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1541
|
||||
|
||||
help_page
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.296875Z
|
||||
cf329064faeb00741b9a1390677c1b27
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
561
|
||||
|
||||
ppsConf.txt
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.390625Z
|
||||
2fe53e393703da5db021ba122df651da
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
28340
|
||||
|
||||
smsc_sys.conf
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.406250Z
|
||||
8a5c1de60a79d7149ea3aae56ad6ee4d
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
86
|
||||
|
||||
hlr_parambit.conf
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.421875Z
|
||||
8c63d6cbc22edc75874555b19a2c8ff0
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
20740
|
||||
|
||||
HlrSysPara
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.406250Z
|
||||
3698e8bf4de04c7bf65dcf683c1c8fc5
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
7244
|
||||
|
||||
wxc2exit.txt
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.453125Z
|
||||
36b3f4a9e9ff77055c211efac6de9013
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
74
|
||||
|
||||
xap_sysparam.conf
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.453125Z
|
||||
adb6e10944b332812a04e892e71d565f
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
13
|
||||
|
||||
profile
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.468750Z
|
||||
0049e7048c766e13ddec943a200ae608
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
771
|
||||
|
||||
menu_page
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.468750Z
|
||||
ddfee824a6ab26cb8e64368669f38b71
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
730
|
||||
|
||||
system.ini
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.562500Z
|
||||
cc73dc3aa5b3d6d39d2f07b15dfdcab5
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
212
|
||||
|
||||
smsc_csta.conf
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.562500Z
|
||||
ecf8d97315dfb7401a6ff8cd615aab08
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
363
|
||||
|
||||
iptrans.conf
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.578125Z
|
||||
79dc403fc14953d2f0656c6cc386b5e9
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
450
|
||||
|
||||
wxc2_sys.conf
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.578125Z
|
||||
c59a016f57ed632c76316173b7f560e1
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
19
|
||||
|
||||
conv_prefix.conf
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.671875Z
|
||||
e844a4aa6315c4ad71e8089422f675dc
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
4608
|
||||
|
||||
mtp3.conf
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.703125Z
|
||||
b44ca5c82a007cf88940026003aa780d
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
95312
|
||||
|
||||
cap_operation.conf
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.703125Z
|
||||
a59a993208c55239da80a0a85c1cbd35
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1260
|
||||
|
||||
cap_acn.conf
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.718750Z
|
||||
3f1c2ad8d1adbad97fa79e63b0e40aee
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
244
|
||||
|
||||
smsc_parambit.conf
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.718750Z
|
||||
c596c5d249e717db67ab93e6f0a4f7f2
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
2836
|
||||
|
||||
sccp_test.conf
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.734375Z
|
||||
ed2e690b7eab94c05345db2220bbec57
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
18
|
||||
|
||||
sccp.conf
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:11.734375Z
|
||||
1268f52b8405289bc7e55db63ec2e481
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
1116
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
@@ -1,5 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
END
|
||||
@@ -1,5 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
END
|
||||
@@ -1,5 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
END
|
||||
@@ -1,9 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
@@ -1,5 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
END
|
||||
@@ -1,5 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
END
|
||||
@@ -1,9 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
@@ -1,5 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
END
|
||||
@@ -1,5 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
END
|
||||
@@ -1,5 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
END
|
||||
@@ -1,5 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
END
|
||||
@@ -1,5 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
END
|
||||
@@ -1,9 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
@@ -1,5 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
END
|
||||
@@ -1,5 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
END
|
||||
@@ -1,5 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
END
|
||||
@@ -1,5 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
END
|
||||
@@ -1,9 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
@@ -1,5 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
END
|
||||
@@ -1,9 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
@@ -1,5 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
END
|
||||
@@ -1,5 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
END
|
||||
@@ -1,9 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
Binary file not shown.
@@ -1,8 +0,0 @@
|
||||
#application context name configure file for CAP
|
||||
total data length=4
|
||||
|
||||
#application context name data
|
||||
No.1:50 00 // gsmSSF to gsmSCF
|
||||
No.2:51 02 // assist handoff gsmSSF to gsmSCF
|
||||
No.3:52 02 // gsmSRF to gsmSCF
|
||||
No.4:128 02 // gsmSRF to gsmSCF
|
||||
@@ -1,36 +0,0 @@
|
||||
# operation code configure file for CAP
|
||||
total data length=32
|
||||
|
||||
#operation code
|
||||
No.1:00 04 5 // initial DP
|
||||
No.2:16 02 5 // assist request instructions
|
||||
No.3:17 02 20 // establish temporary connection
|
||||
No.4:18 04 5 // disconnect forward connection
|
||||
No.5:19 04 5 // connect to resource
|
||||
No.6:20 04 5 // connect
|
||||
No.7:22 04 5 // release call
|
||||
No.8:23 04 5 // request report BCSM event
|
||||
No.9:24 04 5 // event report BCSM
|
||||
No.10:31 04 5 // continue
|
||||
No.11:33 04 5 // reset timer
|
||||
No.12:34 04 5 // furnish charging information
|
||||
No.13:35 04 5 // apply charging
|
||||
No.14:36 04 5 // apply charging report
|
||||
No.15:44 04 5 // call information report
|
||||
No.16:45 04 5 // call information request
|
||||
No.17:46 04 5 // send charging information
|
||||
No.18:47 04 60 // play announcement
|
||||
No.19:48 01 60 // prompt and collect user information
|
||||
No.20:49 04 5 // specialized resource report
|
||||
No.21:53 04 5 // cancel
|
||||
No.22:55 04 5 // activity test
|
||||
No.23:60 04 5 // initial DPSMS
|
||||
No.24:61 04 5 // Furnishing charging info.SMS
|
||||
No.25:62 04 5 // connect DPSMS
|
||||
No.26:63 04 5 // request SMS event
|
||||
No.27:64 04 5 // event report SMS
|
||||
No.28:65 04 5 // continue SMS
|
||||
No.29:66 04 5 // release DPSMS
|
||||
No.30:67 04 5 // reset timer DPSMS
|
||||
No.31:176 04 5 // VPS to PPS
|
||||
No.32:177 04 5 // PPS to VPS
|
||||
@@ -1,215 +0,0 @@
|
||||
# Country code table configure file
|
||||
|
||||
#List the country code
|
||||
0086; // China
|
||||
0001; // Canada & USA
|
||||
0007; // Kazakhstan & Kirighzia & Kyrgyzstan & Russia & Sakhalin & Tajikistan & Uzbekistan
|
||||
0020; // Egypt
|
||||
0027; // South Africa
|
||||
0030; // Greece
|
||||
0031; // Netherlands
|
||||
0036; // Hungary
|
||||
0039; // Italy
|
||||
0040; // Bomania
|
||||
0041; // Switzerland
|
||||
0042; // Czech Republic & Slovakia
|
||||
0043; // Austria
|
||||
0044; // United Kingdom
|
||||
0045; // Denmark
|
||||
0046; // Sweden
|
||||
0047; // Norway
|
||||
0048; // Poland
|
||||
0049; // Germany
|
||||
0051; // Peru
|
||||
0052; // South Korea
|
||||
0053; // Cuba
|
||||
0054; // Argentina
|
||||
0055; // Brazil
|
||||
0056; // Chile
|
||||
0057; // Colombia
|
||||
0058; // Venezuela
|
||||
0060; // Malaysia
|
||||
0061; // Australia
|
||||
0062; // Indonesia
|
||||
0063; // Philippines
|
||||
0064; // New Zealand
|
||||
0065; // Singapore
|
||||
0066; // Thailand
|
||||
0081; // Japan
|
||||
0084; // Vietnam
|
||||
0090; // Turkey
|
||||
0091; // India
|
||||
0092; // Pakistan
|
||||
0093; // Afghanistan
|
||||
0094; // Sri Lanka
|
||||
0095; // Myanmar (Burma)
|
||||
0098; // Iran
|
||||
0212; // Morocco
|
||||
0213; // Algeria
|
||||
0216; // Tunisia
|
||||
0218; // Libya
|
||||
0220; // Gambia
|
||||
0221; // Senegal Republic
|
||||
0222; // Mauritania
|
||||
0223; // Mali Republic
|
||||
0224; // Guinea
|
||||
0225; // Ivory Coast
|
||||
0226; // Burkina Faso
|
||||
0227; // Niger
|
||||
0228; // Togo
|
||||
0229; // Benin
|
||||
0230; // Mauritius
|
||||
0231; // Liberia
|
||||
0232; // Sierra Leone
|
||||
0233; // Ghana
|
||||
0234; // Nigeria
|
||||
0235; // Chad Republic
|
||||
0236; // Central Africa Republic
|
||||
0237; // Cameroon
|
||||
0239; // Sao Tome
|
||||
0240; // Equatorial Guinea
|
||||
0241; // Gabon
|
||||
0242; // Congo
|
||||
0243; // Zaire
|
||||
0244; // Angola
|
||||
0245; // Guinea Bissau
|
||||
0246; // Diego Garcia
|
||||
0247; // Ascension Islands
|
||||
0248; // Seychelles
|
||||
0249; // Sudan
|
||||
0250; // Rwanda
|
||||
0251; // Ethiopia
|
||||
0252; // Somalia
|
||||
0253; // Djibouti
|
||||
0254; // Kenya
|
||||
0255; // Tanzania
|
||||
0256; // Uganda
|
||||
0257; // Burundi
|
||||
0258; // Mozambigue
|
||||
0259; // Zanzibar
|
||||
0260; // Zambia
|
||||
0261; // Madagascar
|
||||
0262; // Reunion Island
|
||||
0263; // Zimbabwe
|
||||
0264; // Namibia
|
||||
0265; // Malawi
|
||||
0266; // Lesotho
|
||||
0267; // Botswana
|
||||
0268; // Swaziland
|
||||
0269; // Comoros
|
||||
0290; // St.Helena
|
||||
0291; // Eritrea
|
||||
0297; // Aruba
|
||||
0298; // Faeroe Islands
|
||||
0299; // Greenland
|
||||
#2696 // Mayotte Island
|
||||
0321; // Belgium
|
||||
0331; // France
|
||||
0339; // Monaco
|
||||
0349; // Spain
|
||||
0350; // Gibraltar
|
||||
0351; // Portugal
|
||||
0352; // Luxembourg
|
||||
0353; // Ireland
|
||||
0354; // Iceland
|
||||
0355; // Albania
|
||||
0356; // Malta
|
||||
0357; // Cyprus
|
||||
0358; // Finland
|
||||
0359; // Bulgaria
|
||||
0370; // Lithuania
|
||||
0371; // Latvia
|
||||
0372; // Estonia
|
||||
0373; // Moldova
|
||||
0374; // Armenia
|
||||
0375; // Belarus
|
||||
0376; // Andorra
|
||||
0380; // Ukraine
|
||||
0381; // Yugoslavia
|
||||
0385; // Croatia
|
||||
0386; // Slovenia
|
||||
0387; // Bosnia Herzegovina
|
||||
0389; // Macedonia
|
||||
0395; // San Marino
|
||||
0396; // Vatican City
|
||||
0417; // Liechtenstein
|
||||
0500; // Falkland Islands
|
||||
0501; // Belize
|
||||
0502; // Guatemala
|
||||
0503; // EI Salvador
|
||||
0504; // Honduras
|
||||
0505; // Nicaragua
|
||||
0506; // Costa Rica
|
||||
0507; // Panama
|
||||
0508; // St.Pierre
|
||||
0509; // Haiti
|
||||
0521; // Mexico Band 1
|
||||
0522; // Mexico Band 2
|
||||
0523; // Mexico Band 3
|
||||
0524; // Mexico Band 4
|
||||
0525; // Mexico Band 5
|
||||
0526; // Mexico Band 6
|
||||
0527; // Mexico Band 7
|
||||
0528; // Mexico Band 8
|
||||
0590; // Guadeloupe
|
||||
0591; // Bolivia
|
||||
0592; // Ecuador & Guyana
|
||||
0594; // French Guiana
|
||||
0595; // Paraguay
|
||||
0596; // French Antilles
|
||||
0597; // Suriname
|
||||
0598; // Uruguay
|
||||
0599; // Netherlands Antilles
|
||||
#5399 // Guantanamo Bay
|
||||
0670; // Saipan
|
||||
0671; // Guam
|
||||
0672; // Antarctica(Casey) & Antarctica(Scott) & Christmas/Cocos
|
||||
0673; // Brunei
|
||||
0674; // Nauru
|
||||
0675; // Papau New Guinea
|
||||
0676; // Tonga
|
||||
0677; // Solomon Islands
|
||||
0678; // Vanuatu
|
||||
0679; // Fiji Islands
|
||||
0680; // Palau
|
||||
0681; // Wallis/Futuna
|
||||
0682; // Cook Island
|
||||
0683; // Niue Island
|
||||
0684; // American Samoa
|
||||
0685; // West Samoa
|
||||
0686; // Kiribati
|
||||
0687; // New Caledonia
|
||||
0688; // Tuvalu Islands
|
||||
0689; // French Polynesia
|
||||
0691; // Micronesia
|
||||
0692; // Marshall Islands
|
||||
#6723 // Norfolk Island
|
||||
0787; // Puerto Rico
|
||||
0809; // Anguilla & Antigua & Bahamas & Barbados & Bermuda......
|
||||
0850; // North Korea
|
||||
0852; // Hong Kong
|
||||
0853; // Macao
|
||||
0855; // Cambodia
|
||||
0856; // Laos
|
||||
0868; // Trinidad/Tobago
|
||||
0880; // Bangladesh
|
||||
0886; // Taiwan
|
||||
0960; // Maldives
|
||||
0961; // Lebanon
|
||||
0962; // Jordan
|
||||
0963; // Syria
|
||||
0964; // Iraq
|
||||
0965; // Kuwait
|
||||
0966; // Saudi Arabia
|
||||
0967; // Yemen Arab Rep.
|
||||
0968; // Oman
|
||||
0971; // United Arab Emirates
|
||||
0972; // Israel
|
||||
0973; // Bahrain
|
||||
0974; // Qatar
|
||||
0975; // Bhutan
|
||||
0976; // Mongolia
|
||||
0977; // Nepal
|
||||
0994; // Azerbaijan
|
||||
0995; // Georgia
|
||||
|
||||
Binary file not shown.
@@ -1,6 +0,0 @@
|
||||
#HLR/AUC/EIR system configure file
|
||||
|
||||
#IP info of SMSC
|
||||
hlr-0=172.18.234.1;
|
||||
#hlr-1=172.18.133.1;
|
||||
hlr-1=172.54.240.147;
|
||||
@@ -1,20 +0,0 @@
|
||||
|
||||
******************
|
||||
* HELP PAGE *
|
||||
******************
|
||||
|
||||
Welcome to DEBUG MONITOR.
|
||||
|
||||
Press 's' or 'S' to enter "SUB MODULE SELECTION PAGE".
|
||||
|
||||
In "SUB MODULE SELECTION PAGE",
|
||||
Press 'x' or 'X' to return "HELP PAGE",
|
||||
Press 'a-p' or 'A-P' to select sub module.
|
||||
|
||||
In each sub module, Press '0-9' and 'a-f' to select pages.
|
||||
|
||||
There are two methods to use Debug,
|
||||
1. Serial Port, use PC-to-PC serial line.
|
||||
2. Telnet, use "telnet dst_host_ip 4965".
|
||||
|
||||
$
|
||||
Binary file not shown.
@@ -1,25 +0,0 @@
|
||||
#ipconfig for pps
|
||||
4950=UDP,6,DIRECT
|
||||
4951=UDP,0,BUFFER
|
||||
4952=UDP,0,BUFFER
|
||||
4953=UDP,0,BUFFER
|
||||
4954=UDP,0,BUFFER
|
||||
4955=UDP,3,BUFFER
|
||||
4956=UDP,3,BUFFER
|
||||
4957=UDP,4,BUFFER
|
||||
4958=UDP,0,BUFFER
|
||||
4959=UDP,0,BUFFER
|
||||
4960=UDP,4,BUFFER
|
||||
4961=UDP,0,BUFFER
|
||||
4962=UDP,0,BUFFER
|
||||
4963=UDP,0,BUFFER
|
||||
4964=UDP,0,BUFFER
|
||||
4965=TCP,6,BUFFER
|
||||
4966=UDP,2,DIRECT
|
||||
4967=UDP,4,DIRECT
|
||||
4968=UDP,0,BUFFER
|
||||
4969=UDP,0,BUFFER
|
||||
4970=UDP,0,BUFFER
|
||||
4971=UDP,0,BUFFER
|
||||
4972=UDP,0,BUFFER
|
||||
4973=UDP,0,BUFFER
|
||||
@@ -1,42 +0,0 @@
|
||||
#application context name configure file
|
||||
total data length=36
|
||||
|
||||
#application context name data
|
||||
No.1:01 03 // network location update
|
||||
No.2:02 03 // location cancel
|
||||
No.3:03 03 // roaming number enquiry
|
||||
No.4:05 03 // location info retrieval
|
||||
No.5:10 02 // reset context
|
||||
No.6:11 02 // handover control
|
||||
No.7:13 02 // equipment management
|
||||
No.8:14 02 // info retrieval
|
||||
No.9:15 02 // inter VLR info retrieval
|
||||
No.10:16 03 // subscriber data management
|
||||
No.11:17 03 // tracing
|
||||
No.12:18 02 // network functional SS
|
||||
No.13:19 02 // network unstructured SS
|
||||
No.14:20 03 // short message gateway
|
||||
No.15:21 03 // short message MO relay
|
||||
No.16:23 02 // short message alert
|
||||
No.17:24 03 // short message waiting data management
|
||||
No.18:25 03 // mobile terminating short message relay
|
||||
No.19:26 02 // imsi retrieval
|
||||
No.20:27 03 // MS purging
|
||||
No.21:28 03 // subscriber info enquiry
|
||||
No.22:29 03 // any time info enquiry
|
||||
No.23:06 03 // call control transfer
|
||||
No.24:36 03 // invocation notification
|
||||
No.25:12 03 // sIWFS allocation
|
||||
No.26:31 03 // group call control
|
||||
No.27:32 03 // GPRS location update
|
||||
No.28:33 03 // GPRS location info retrieval
|
||||
No.29:34 03 // failure report
|
||||
No.30:35 03 // GPRS notify
|
||||
No.31:07 03 // reporting
|
||||
No.32:08 03 // call completion
|
||||
No.33:200 02 // security triplets (MAP-H defined by Meng Xiaozhen)
|
||||
No.34:201 02 // subscriber interrogate (MAP-H defined by Meng Xiaozhen)
|
||||
No.35:202 02 // HLR subscriber management (MAP-H defined by Meng Xiaozhen)
|
||||
No.36:203 02 // HLR ping AUC (MAP-H defined by Meng Xiaozhen reserved)
|
||||
NO.37:09 01 // Send parameter
|
||||
|
||||
@@ -1,76 +0,0 @@
|
||||
# operation code configure file
|
||||
total data length=72
|
||||
|
||||
#operation code
|
||||
No.1:02 01 20 // update location
|
||||
No.2:03 01 10 // cancel location
|
||||
No.3:67 01 20 // purge mobile station
|
||||
No.4:55 01 05 // send identification
|
||||
No.5:68 01 20 // prepare handover
|
||||
No.6:29 03 108000 // send end signal
|
||||
No.7:33 04 05 // process access signalling
|
||||
No.8:34 04 05 // forward access signalling
|
||||
No.9:69 01 20 // prepare subsequent handover
|
||||
No.10:56 01 20 // send authentication info
|
||||
No.11:43 01 20 // check IMEI
|
||||
No.12:07 01 20 // insert subscriber data
|
||||
No.13:08 01 20 // delete subscriber data
|
||||
No.14:37 04 20 // reset
|
||||
No.15:38 04 20 // forward check ss indication
|
||||
No.16:57 01 20 // restore data
|
||||
No.17:50 01 20 // active trace mode
|
||||
No.18:51 01 20 // deactive trace mode
|
||||
No.19:58 01 20 // send imsi
|
||||
No.20:22 01 20 // send routing info
|
||||
No.21:04 01 20 // provide roaming number
|
||||
No.22:06 01 20 // resume call handling
|
||||
No.23:31 01 20 // provide SIWFS number
|
||||
No.24:32 01 20 // SIWFS signalling modify
|
||||
No.25:73 01 20 // set report state
|
||||
No.26:74 01 20 // status report
|
||||
No.27:75 01 60 // remote user free
|
||||
No.28:10 01 20 // register ss
|
||||
No.29:11 01 20 // erase ss
|
||||
No.30:12 01 20 // activate ss
|
||||
No.31:13 01 20 // deactivate ss
|
||||
No.32:14 01 20 // interrogate ss
|
||||
No.33:59 01 600 // process unstructure ss request
|
||||
No.34:60 01 60 // unstructure ss request
|
||||
No.35:61 01 60 // unstructure ss notify
|
||||
No.36:17 01 60 // register password
|
||||
No.37:18 03 20 // get password
|
||||
No.38:76 01 20 // register cc entry
|
||||
No.39:77 01 20 // erase cc entry
|
||||
No.40:45 01 20 // send routing info for sm
|
||||
No.41:46 01 60 // mo forward sm
|
||||
No.42:44 01 60 // mt forward sm
|
||||
No.43:47 01 05 // report sm delivery status
|
||||
No.44:63 04 05 // inform service centre
|
||||
No.45:64 01 05 // alert service center
|
||||
No.46:66 01 05 // ready for sm
|
||||
No.47:70 01 20 // provider subscriber info
|
||||
No.48:71 01 20 // any time interrogation
|
||||
No.49:72 01 20 // ss invocatin notification
|
||||
No.50:39 01 20 // prepare group call
|
||||
No.51:40 03 108000 // send group call end signal
|
||||
No.52:41 04 05 // process group call signalling
|
||||
No.53:42 04 05 // forward group call signalling
|
||||
No.54:23 01 20 // update GPRS location
|
||||
No.55:24 01 20 // send routing info for GPRS
|
||||
No.56:25 01 20 // failure report
|
||||
No.57:26 01 20 // note ms present for GPRS
|
||||
No.58:200 01 05 // security triplets (MAP-H defined by Meng Xiaozhen)
|
||||
No.59:201 01 05 // interrogate subscriber (MAP-H defined by Meng Xiaozhen)
|
||||
No.60:202 01 05 // hlr create subscriber (MAP-H defined by Meng Xiaozhen)
|
||||
No.61:203 01 05 // hlr delete subscriber (MAP-H defined by Meng Xiaozhen)
|
||||
No.62:204 01 05 // hlr ping auc (MAP-H defined by Meng Xiaozhen reserved)
|
||||
No.63:09 01 20 // send parameters
|
||||
No.64:48 01 20 // not subscriber present
|
||||
No.65:19 01 20 // process unstructure SS data
|
||||
No.66:54 01 20 // beging subscriber activity
|
||||
No.67:28 01 20 // perform handover
|
||||
No.68:30 01 20 // perform subsequence handvoer
|
||||
No.69:35 01 20 // note internal handover
|
||||
No.70:54 01 20 // beging subscriber activity
|
||||
No.71:49 01 20 // alert service center without result
|
||||
No.72:52 01 20 // trace subscriber activity
|
||||
@@ -1,17 +0,0 @@
|
||||
|
||||
*******************
|
||||
* MENU PAGE *
|
||||
*******************
|
||||
|
||||
a -- IPTR m -- MNP
|
||||
b -- MTP3 n -- DEBUG
|
||||
c -- SCCP o -- AUC
|
||||
d -- TCAP p -- SMPP
|
||||
e -- XAPP r -- M2UA
|
||||
f -- MSC s -- BICC
|
||||
g -- VLR t -- SIP
|
||||
h -- EIR u -- ISUP
|
||||
i -- HLR v -- Reserved
|
||||
j -- SMSC w -- SCTP
|
||||
k -- PPS y -- ISDN
|
||||
l -- SNMP z -- Reserved
|
||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -1,37 +0,0 @@
|
||||
# /etc/profile
|
||||
|
||||
# System wide environment and startup programs
|
||||
# Functions and aliases go in /etc/bashrc
|
||||
|
||||
PATH=".:$PATH:/sbin:/usr/sbin:/usr/X11R6/bin:/etc/rc.d/init.d:/usr/local/wxc2/bin"
|
||||
PATH=/usr/java/jdk1.3/bin:$PATH
|
||||
|
||||
ulimit -c 80000
|
||||
if [ `id -gn` = `id -un` -a `id -u` -gt 14 ]; then
|
||||
umask 002
|
||||
else
|
||||
umask 022
|
||||
fi
|
||||
|
||||
USER=`id -un`
|
||||
LOGNAME=$USER
|
||||
MAIL="/var/spool/mail/$USER"
|
||||
|
||||
HOSTNAME=`/bin/hostname`
|
||||
HISTSIZE=1000
|
||||
|
||||
if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ]; then
|
||||
INPUTRC=/etc/inputrc
|
||||
fi
|
||||
JAVA_COMPILER=javacomp ; export JAVA_COMPILER
|
||||
LD_LIBRARY_PATH=/usr/local/mysql/lib ; export LD_LIBRARY_PATH
|
||||
export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE INPUTRC
|
||||
|
||||
for i in /etc/profile.d/*.sh ; do
|
||||
if [ -x $i ]; then
|
||||
. $i
|
||||
fi
|
||||
done
|
||||
|
||||
unset i
|
||||
PATH=/usr/local/wxc2/bin:$PATH
|
||||
@@ -1,26 +0,0 @@
|
||||
#SCCP Config file (R8V0_03)
|
||||
|
||||
[Local Node]
|
||||
#ssn NetID msisdn ip0 ip1
|
||||
4 2 - 172.18.128.1 172.18.129.1
|
||||
6 2 8675557122002 172.18.199.1 -
|
||||
7 2 8675557122001 172.18.198.1 -
|
||||
8 2 8675599999999 172.18.234.3 172.18.99.1
|
||||
9 2 86755920005 172.18.132.1 172.18.99.1
|
||||
10 2 86755920004 172.18.132.1 172.18.99.1
|
||||
11 2 86755920006 172.18.132.1 172.18.99.1
|
||||
19 2 86755920007 172.18.132.1 172.18.99.1
|
||||
20 2 86755920008 172.18.132.1 172.18.99.1
|
||||
21 2 86755920009 172.18.132.1 172.18.99.1
|
||||
22 2 867559000213 172.18.132.1 -
|
||||
146 2 86755920011 172.18.132.1 172.18.99.1
|
||||
147 2 86755920010 172.18.132.1 172.18.99.1
|
||||
254 2 - 172.18.132.1 172.18.99.1
|
||||
[GTT_Table]
|
||||
#No NP StartDigits EndDigits NI SPC SSN RI AI S E N Rep
|
||||
0 6 460020000000000 460029999999999 2 000028 6 0 7
|
||||
#1 1 8675590000000 8675599999998 2 000028 6 0 7
|
||||
|
||||
[RL_SSN]
|
||||
#NetID DPC SSN
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
172.18.199.1
|
||||
2000
|
||||
@@ -1,21 +0,0 @@
|
||||
# This file defines the SMSC CSTA row
|
||||
# The max number of row is 20
|
||||
# Attention: When you want to define the Entity name, the name of "MS" "All" and "Other" is reserved
|
||||
|
||||
# define the entity who send short message to SMSC
|
||||
Receive from:
|
||||
MS
|
||||
PPS
|
||||
VMS
|
||||
#VMS+PPS
|
||||
Other
|
||||
#All
|
||||
|
||||
# define the entity who receive short message from SMSC
|
||||
Send to:
|
||||
MS
|
||||
PPS
|
||||
VMS
|
||||
#VMS+PPS
|
||||
Other
|
||||
#All
|
||||
Binary file not shown.
@@ -1,5 +0,0 @@
|
||||
#SMSC system configure file
|
||||
|
||||
#IP info of SMSC
|
||||
wxc2-0=172.18.98.1;
|
||||
wxc2-1=172.18.99.1;
|
||||
Binary file not shown.
@@ -1 +0,0 @@
|
||||
pps-1=172.18.98.1;
|
||||
@@ -1,4 +0,0 @@
|
||||
WXC2 procedure exit log
|
||||
Time: Fri Nov 5 05:27:51 2004
|
||||
|
||||
Now module: MSC
|
||||
Binary file not shown.
@@ -1,17 +0,0 @@
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 55
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/obj
|
||||
END
|
||||
scoc_test.gcno
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 70
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/obj/scoc_test.gcno
|
||||
END
|
||||
sccp_test.gcno
|
||||
K 25
|
||||
svn:wc:ra_dav:version-url
|
||||
V 70
|
||||
/svn/wxc2/!svn/ver/1/trunk/R4S/plat/sccp/ut/fsmtest/obj/sccp_test.gcno
|
||||
END
|
||||
@@ -1,96 +0,0 @@
|
||||
10
|
||||
|
||||
dir
|
||||
114
|
||||
http://172.25.201.20/svn/wxc2/trunk/R4S/plat/sccp/ut/fsmtest/obj
|
||||
http://172.25.201.20/svn/wxc2
|
||||
|
||||
|
||||
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
4a7aa47d-8bee-446f-9599-049dc37ff264
|
||||
|
||||
scoc_test.gcno
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:12.062500Z
|
||||
db15c6007fcfe043ccb48659e7e53e2c
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
13992
|
||||
|
||||
sccp_test.gcno
|
||||
file
|
||||
|
||||
|
||||
|
||||
|
||||
2012-12-28T03:06:12.078125Z
|
||||
9b738365b4bab3e3aabcdde79de69310
|
||||
2011-09-23T09:01:37.023785Z
|
||||
1
|
||||
xueqiang.sheng
|
||||
has-props
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
5000
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
@@ -1,9 +0,0 @@
|
||||
K 14
|
||||
svn:executable
|
||||
V 1
|
||||
*
|
||||
K 13
|
||||
svn:mime-type
|
||||
V 24
|
||||
application/octet-stream
|
||||
END
|
||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user