Asterisk is a complete PBX in software. It provides all of the features you would expect from a PBX and more. Asterisk does voice over IP in three protocols, and can interoperate with almost all standards-based telephony equipment using relatively inexpensive hardware. Asterisk provides Voicemail services with Directory, Call Conferencing, Interactive Voice Response, Call Queuing. It has support for three-way calling, caller ID services, ADSI, SIP and H.323 (as both client and gateway). This is a standard version. It is scheduled to go to security fixes only on October 3th, 2018, and EOL on October 3th, 2019. See here for more information about Asterisk versions: https://wiki.asterisk.org/wiki/display/AST/Asterisk+Versions
13 lines
484 B
C
13 lines
484 B
C
$NetBSD: patch-main_pbx.c,v 1.1 2018/07/16 21:53:05 joerg Exp $
|
|
|
|
--- main/pbx.c.orig 2016-04-20 10:46:18.000000000 +0000
|
|
+++ main/pbx.c
|
|
@@ -7973,7 +7973,7 @@ static int testtime_write(struct ast_cha
|
|
sscanf(remainder, "%79s", timezone);
|
|
tv = ast_mktime(&tm, S_OR(timezone, NULL));
|
|
|
|
- snprintf(result, sizeof(result), "%ld", (long) tv.tv_sec);
|
|
+ snprintf(result, sizeof(result), "%jd", (intmax_t) tv.tv_sec);
|
|
pbx_builtin_setvar_helper(chan, "__TESTTIME", result);
|
|
return 0;
|
|
}
|