From: Mark Michelson Date: Wed, 16 May 2012 15:52:19 +0000 (+0000) Subject: Fix incorrect default port number for HTTP server. X-Git-Tag: 1.8.14.0-rc1~3^2~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=82a5bbceceb6d3e0f1b4088ae783b68c344d4eff;p=thirdparty%2Fasterisk.git Fix incorrect default port number for HTTP server. Thanks to Tzafrir Cohen for bringing this up on the Asterisk developers mailing list. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@366650 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/http.c b/main/http.c index 9fb00721f6..8fc5e320b6 100644 --- a/main/http.c +++ b/main/http.c @@ -61,7 +61,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") #define MAX_PREFIX 80 #define DEFAULT_SESSION_LIMIT 100 -#define DEFAULT_HTTP_PORT 8080 +#define DEFAULT_HTTP_PORT 8088 #define DEFAULT_HTTPS_PORT 8089 /* See http.h for more information about the SSL implementation */