sense for it to default to off. The default configuration file has it on, and
proper RFC behavior, as indicated by a comment in the code, is for it to be on.
So, let's have it on by default to make lives easier.
(closes issue #10954, suggested by jtodd)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@85604 65c4cc65-6c06-0410-ace0-fbb531ad65f3
#define DEFAULT_SRVLOOKUP FALSE /*!< Recommended setting is ON */
#define DEFAULT_SRVLOOKUP TRUE /*!< Recommended setting is ON */
#define DEFAULT_COMPACTHEADERS FALSE
#define DEFAULT_TOS_SIP 0 /*!< Call signalling packets should be marked as DSCP CS3, but the default is 0 to be compatible with previous versions. */
#define DEFAULT_TOS_AUDIO 0 /*!< Audio packets should be marked as DSCP EF (Expedited Forwarding), but the default is 0 to be compatible with previous versions. */
@ -533,7 +533,7 @@ static int global_rtautoclear;
staticintglobal_notifyringing;/*!< Send notifications on ringing */
staticintglobal_notifyhold;/*!< Send notifications on hold */
staticintglobal_alwaysauthreject;/*!< Send 401 Unauthorized for all failing requests */
staticintsrvlookup;/*!< SRV Lookup on or off. Default is off, RFC behavior is on */
staticintsrvlookup;/*!< SRV Lookup on or off. Default is on */
staticintpedanticsipchecking;/*!< Extra checking ? Default off */
staticintautocreatepeer;/*!< Auto creation of peers at registration? Default off. */