mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-29 18:19:30 +00:00
deprecate chan_modem and its subdrivers
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6465 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -100,6 +100,8 @@ static pthread_t monitor_thread = AST_PTHREADT_NULL;
|
||||
|
||||
static int restart_monitor(void);
|
||||
|
||||
int dep_warning = 0;
|
||||
|
||||
static struct ast_channel *modem_request(const char *type, int format, void *data, int *cause);
|
||||
static int modem_digit(struct ast_channel *ast, char digit);
|
||||
static int modem_call(struct ast_channel *ast, char *idest, int timeout);
|
||||
@@ -816,6 +818,11 @@ static struct ast_channel *modem_request(const char *type, int format, void *dat
|
||||
strsep(&stringp, ":");
|
||||
oldformat = format;
|
||||
|
||||
if (!dep_warning) {
|
||||
ast_log(LOG_WARNING, "This channel driver is deprecated. Please see the UPGRADE.txt file.\n");
|
||||
dep_warning = 1;
|
||||
}
|
||||
|
||||
if (dev[0]=='g' && isdigit(dev[1])) {
|
||||
/* Retrieve the group number */
|
||||
if (sscanf(dev+1, "%u", &groupint) < 1) {
|
||||
|
Reference in New Issue
Block a user