1. 14 3月, 2014 1 次提交
    • Anthony Minessale's avatar
      FS-6287 --resolve When a broken registrar sends a 401 unauth then replies with a… · c067e892
      Anthony Minessale 提交于
      FS-6287 --resolve When a broken registrar sends a 401 unauth then replies with a subsequent 401 unauth without the stale=true attribute, sofia tries to invalidate the auth handle and get stuck in a state where it cannot recover until the reg handle is destroyed.  In this case, the provider in question has a bug on thier end when the nonce count rolls from nc=000000ff to nc=00000100 they start sending several consecitive 401 rather than a 401 with stale=true or a 403.  This change will allow it to reset properly and try again with nc=00000001 on the next try.
      c067e892
  2. 13 3月, 2014 2 次提交
  3. 12 3月, 2014 1 次提交
  4. 11 3月, 2014 2 次提交
  5. 10 3月, 2014 6 次提交
  6. 09 3月, 2014 3 次提交
  7. 07 3月, 2014 1 次提交
  8. 06 3月, 2014 2 次提交
  9. 05 3月, 2014 4 次提交
  10. 04 3月, 2014 8 次提交
  11. 03 3月, 2014 6 次提交
  12. 02 3月, 2014 4 次提交
    • Travis Cross's avatar
      Update the configuration report · 195586f7
      Travis Cross 提交于
      Order the default configure flags in the order they show up in
      configure --help, and order our own alphabetically.
      195586f7
    • Travis Cross's avatar
      Add --enable-fhs flag to configure · 057148e3
      Travis Cross 提交于
      When --enable-fhs is passed to configure, we set all paths by default
      in a way compliant with FHS, the Filesystem Hierarchy Standard.
      
        http://www.pathname.com/fhs/
      
      Each path may still be overridden by passing the specific flag for it.
      057148e3
    • Travis Cross's avatar
      Show TLS cipher suite selected in sofia debug · 8553498d
      Travis Cross 提交于
      This shows the cipher name, TLS version, the number of cipher bits and
      algorithm bits, and a description of the cipher in Sofia's debug
      logging output on level 9.
      8553498d
    • Travis Cross's avatar
      Deal with read errors in switch_xml.c · fdee9d94
      Travis Cross 提交于
      Unlike fread(3), read(3) will return -1 on error.  We were assigning
      the result of read to a potentially unsigned variable, and passing the
      result down to switch_xml_parse_str() where it would end up
      determining how many bytes to malloc(3).
      fdee9d94