📄 u_llc.c
字号:
/************************************************************************//* SISCO SOFTWARE MODULE HEADER *****************************************//************************************************************************//* *//* MODULE NAME : u_llc.c *//* PRODUCT(S) : MMSEASE *//* *//* MODULE DESCRIPTION : *//* *//* MODIFICATION LOG : *//* Date Who Rev Comments *//* -------- --- ------ ------------------------------------------- *//* 04/15/97 DSF 7.00 MMSEASE 7.0 release. See MODL70.DOC for *//* history. *//************************************************************************/#include "glbtypes.h"#include "sysincs.h"#include "scrndefs.h"#include "mms_user.h"#include "suil.h"#include "fkeydefs.h"/************************************************************************//* For debug version, use a static pointer to avoid duplication of *//* __FILE__ strings. *//************************************************************************/#ifdef DEBUG_SISCOstatic ST_CHAR *thisFileName = __FILE__;#endif/************************************************************************//************************************************************************//* USER DEFINED FUNCTIONS *//************************************************************************//************************************************************************//* u_mllp_l_error_ind *//************************************************************************/ST_VOID u_mllp_l_error_ind (ST_INT chan, TRANS_ID *id_ptr, ST_INT code) {static ST_UINT except_count = 0; /* exception counter */ except_count++; printf ("\n MLLC error chan: %d code: 0x%lx (hex) received", chan,code); wait_msg (""); }/************************************************************************//* u_mllp_l_assoc_ind *//************************************************************************/ST_RET u_mllp_l_assoc_ind (ST_INT chan, LLC_RXINFO *rxinfo) { return (SD_SUCCESS); }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -