mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 04:11:08 +00:00
Minor enum improvements for iax/iax2
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1797 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
10
enum.c
10
enum.c
@@ -125,12 +125,14 @@ static int parse_naptr(unsigned char *dst, int dstsize, char *tech, int techsize
|
||||
} else if ((!strncasecmp(services, "e2u+h323", 8)) ||
|
||||
(!strncasecmp(services, "h323+e2u", 8))) {
|
||||
strncpy(tech, "h323", techsize -1);
|
||||
} else if ((!strncasecmp(services, "e2u+iax", 7)) ||
|
||||
(!strncasecmp(services, "iax+e2u", 7))) {
|
||||
strncpy(tech, "iax", techsize -1);
|
||||
} else if ((!strncasecmp(services, "e2u+iax2", 8)) ||
|
||||
} else if ((!strncasecmp(services, "e2u+x-iax2", 10)) ||
|
||||
(!strncasecmp(services, "e2u+iax2", 8)) ||
|
||||
(!strncasecmp(services, "iax2+e2u", 8))) {
|
||||
strncpy(tech, "iax2", techsize -1);
|
||||
} else if ((!strncasecmp(services, "e2u+x-iax", 9)) ||
|
||||
(!strncasecmp(services, "e2u+iax", 7)) ||
|
||||
(!strncasecmp(services, "iax+e2u", 7))) {
|
||||
strncpy(tech, "iax", techsize -1);
|
||||
} else if ((!strncasecmp(services, "e2u+tel", 7)) ||
|
||||
(!strncasecmp(services, "tel+e2u", 7))) {
|
||||
strncpy(tech, "tel", techsize -1);
|
||||
|
Reference in New Issue
Block a user