1. 30 11月, 2006 3 次提交
    • Anthony Minessale's avatar
      mod_enum · 8c67ef2c
      Anthony Minessale 提交于
      git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3495 d0543943-73ff-0310-b7d9-9358b9ac24b2
      8c67ef2c
    • Anthony Minessale's avatar
      ENUM Support · 60434dec
      Anthony Minessale 提交于
      mod_enum can be used as a dialplan app, an api call from the console or as a dialplan interface.
      
      
      Dialplan Interface:
      put enum as the dialplan parameter in an endpoint module
      i.e. instead of "XML" set it to "enum" or "enum,XML" for fall through.
      
      Dialplan App:
      This example will do a lookup and set the a variable that is the proper
      dialstring to call all of the possible routes in order of preference according to 
      the lookup and the order of the routes in the enum.conf section.
      
      <extension name="tollfree">
        <condition field="destination_number" expression="^(18(0{2}|8{2}|7{2}|6{2})\d{7})$">
          <action application="enum" data="$1"/>
          <action application="bridge" data="${enum_auto_route}"/>
        </condition>
      </extension>
      
      You can also pick an alrernate root:
      <action application="enum" data="$1 myroot.org"/>	
      
      
      API command:
      at the console you can say:
      enum <number> [<root>]
      
      The root always defaults to the one in the enum.conf section.
      
      
      
      
      git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3494 d0543943-73ff-0310-b7d9-9358b9ac24b2
      60434dec
    • Anthony Minessale's avatar
      tweak · 90ddec83
      Anthony Minessale 提交于
      git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3493 d0543943-73ff-0310-b7d9-9358b9ac24b2
      90ddec83
  2. 29 11月, 2006 7 次提交
  3. 28 11月, 2006 12 次提交
  4. 27 11月, 2006 3 次提交
  5. 26 11月, 2006 1 次提交
  6. 25 11月, 2006 2 次提交
  7. 24 11月, 2006 2 次提交
  8. 23 11月, 2006 4 次提交
  9. 22 11月, 2006 1 次提交
  10. 21 11月, 2006 4 次提交
  11. 20 11月, 2006 1 次提交
    • Michael Jerris's avatar
      update to new sofia snapshot. Fixes a memory leak on invite, a timer bug, and… · cb249487
      Michael Jerris 提交于
      update to new sofia snapshot.  Fixes a memory leak on invite, a timer bug, and several other issues as follows:
      
      Thu Nov 16 07:23:30 Eastern Standard Time 2006  Pekka.Pessi@nokia.com
        * nta.c: setting the local sequence number of nta_leg_t only when first reques
      t is sent.
      
        Application can now set the initial value of CSeq either in nta_leg_create()
        or in nta_outgoing_*create() (or nta_msg_request_complete()).
      
        * nua_session.c: fixed session timer negotiation when UAS does refreshing with
       INVITEs
      
        The session-expires header had "uac" even when uac did not support timer.
        The UAS failed to send re-INVITEs.
      
        Thanks for Chung Pak Lai for reporting this problem.
      
        * bnf: added host_cmp().
      
        * outbound.c: using host_cmp() to check if Via host and received parameter dif
      fer
      
        Bug reported by Marc Blanchet.
      
        * nua_session.c: fixed leak in incomin INVITE processing.
      
      git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@3425 d0543943-73ff-0310-b7d9-9358b9ac24b2
      cb249487