⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 smsc.h

📁 gnu的专业网关smpp协议支持源代码。
💻 H
字号:
/* * smsc.h - interface to SMS center subsystem * * Lars Wirzenius for WapIT Ltd. * * New API by Kalle Marjola 1999 */#ifndef SMSC_H#define SMSC_H#include <stddef.h>#include <stdio.h>#include <time.h>#include "gwlib/gwlib.h"#include "msg.h"/* * A data structure representing an SMS center. This data structure * is opaque: users MUST NOT use the fields directly, only the * smsc_* functions may do so. */typedef struct SMSCenter SMSCenter;/* Open the connection to an SMS center. 'grp' is a configgroup which   determines the sms center. See details from sample configuration file   'kannel.conf'   The operation returns NULL for error and the pointer   to the new SMSCenter structure for OK.   */SMSCenter *smsc_open(CfgGroup *grp);/* * reopen once opened SMS Center connection. Close old connection if * exists * * return 0 on success * return -1 if failed * return -2 if failed and no use to repeat the progress (i.e. currently *   reopen not implemented) */int smsc_reopen(SMSCenter *smsc);/* Return the `name' of an SMC center. Name is defined here as a string that   a human understands that uniquely identifies the SMSC. This operation   cannot fail. */char *smsc_name(SMSCenter *smsc);/* Close the connection to an SMS center. Return -1 for error   (the connection will be closed anyway, but there was some error   while doing so, so it wasn't closed cleanly), or 0 for OK.   Return 0 if the smsc is NULL or smsc is already closed. */int smsc_close(SMSCenter *smsc);#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -