1. 04 9月, 2014 15 次提交
  2. 03 9月, 2014 5 次提交
  3. 02 9月, 2014 1 次提交
  4. 01 9月, 2014 2 次提交
  5. 30 8月, 2014 5 次提交
  6. 29 8月, 2014 2 次提交
  7. 28 8月, 2014 5 次提交
  8. 27 8月, 2014 3 次提交
    • Travis Cross's avatar
      Remove misleading `tport` example from configs · 5a209a96
      Travis Cross 提交于
      As an example of using mod_sofia's gateway parameter `contact-params`
      we'd used the value `tport=tcp`.  Looking around, it's clear this has
      misled people into believing you can specify `tport=tcp` to make the
      gateway use TCP or `tport=tls` to make the gateway use TLS.  This does
      not work.
      
      The actual contact parameter is named `transport` rather than `tport`,
      and you shouldn't use `transport` in `contact-params` because we
      automatically add a `transport` to the Contact: based on the value of
      `register-transport` (even if the gateway is set to not register).
      
      It's clear why this would be confusing, so we'll just remove this as
      an example.
      5a209a96
    • Brian West's avatar
      FS-6770 #resolve · 1dc44067
      Brian West 提交于
      1dc44067
    • Nathan Neulinger's avatar
  9. 26 8月, 2014 2 次提交
    • Travis Cross's avatar
      Avoid output of junk text by fs_cli · 323a3d61
      Travis Cross 提交于
      In some cases where `redisplay()` is called immediately after a
      command is run (e.g. `log ...`) we often get a prompt, junk output,
      and a second prompt.  This is due to a (known) race.
      
      We believe we're falling afoul of this code in `el_deletestr`:
      
          if (el->el_line.cursor < &el->el_line.buffer[n])
                  return;
      
      Basing the length of text to delete off of the cursor position
      resolves the issue of junk text, but the real solution is to eliminate
      the race conditions, which will also resolve the sometimes duplicated
      prompt.
      
      FS-6764 #resolve
      
      Thanks-to: Nathan Neulinger <nneul@neulinger.org>
      323a3d61
    • Anthony Minessale's avatar
      Improve conference recording · 0f1494ae
      Anthony Minessale 提交于
      0f1494ae