1. 19 11月, 2014 7 次提交
  2. 18 11月, 2014 10 次提交
  3. 17 11月, 2014 8 次提交
  4. 16 11月, 2014 2 次提交
    • Travis Cross's avatar
      Allow setting CURL timeout from curl API command · f1df8d60
      Travis Cross 提交于
      Previously the `timeout` option to the curl API command set only
      `CURLOPT_CONNECTTIMEOUT` -- the maximum amount of time that curl will
      wait to connect to the server.  If the server accepted the connection
      but then never replied, curl would wait essentially forever.  There
      was no way to set `CURLOPT_TIMEOUT` -- the maximum amount of time the
      entire request operation is allowed to take.
      
      With this change, the `timeout` option sets `CURLOPT_TIMEOUT`.  We've
      earlier added a `connect-timeout` option to set
      `CURLOPT_CONNECTTIMEOUT`.
      
      This is a change to existing behavior.  However, it's likely that this
      is what people expected it to do all along.  The curl application
      call, for example, accepts both `curl_connect_timeout` and
      `curl_timeout` channel variables, with the latter setting
      `CURLOPT_TIMEOUT`.
      
      If people really were relying on this odd behavior, we'll rename the
      option with the new behavior to something else and come up with a
      transition plan.
      f1df8d60
    • Travis Cross's avatar
      Add `connect-timeout` option for curl API command · 1ee325df
      Travis Cross 提交于
      This option sets the maximum number of seconds that curl will wait to
      connect with the server.
      
      Right now this is a synonym for the `timeout` option.
      1ee325df
  5. 14 11月, 2014 4 次提交
  6. 13 11月, 2014 3 次提交
    • Chris Rienzo's avatar
      FS-6979 #resolve #comment mod_http_cache: added base-domain config to s3… · dd612321
      Chris Rienzo 提交于
      FS-6979 #resolve #comment mod_http_cache: added base-domain config to s3 profiles so mod_http_cache can access self hosted s3 compatible service.
      
      Example configuration:
      
        <profiles>
          <profile name="s3">
             <!-- Credentials for AWS account. -->
             <aws-s3>
                <!-- 20 character key identifier -->
                <access-key-id><![CDATA[AKIAIOSFODNN7EXAMPLE]]></access-key-id>
                <!-- 40 character secret -->
                <secret-access-key><![CDATA[wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY]]></secret-access-key>
                <base-domain><![CDATA[example.com]]></base-domain>
             </aws-s3>
             <!-- Domains that this profile applies to -->
             <domains>
                <domain name="bucket.example.com"/>
                <domain name="bucket2.example.com"/>
             </domains>
          </profile>
        </profiles>
      dd612321
    • Michael Jerris's avatar
      FS-6531: #resolve set to tag on uuid_phone_event notify to make grandstream… · 75473a70
      Michael Jerris 提交于
      FS-6531: #resolve set to tag on uuid_phone_event notify to make grandstream happy, even tho they could have matched the dialog fine off the from tag like every other phone does.
      75473a70
    • Michael Jerris's avatar
      FS-6531: #resolve set to tag on auto answer notify to make grandstream happy,… · 82aa3314
      Michael Jerris 提交于
      FS-6531: #resolve set to tag on auto answer notify to make grandstream happy, even tho they could have matched the dialog fine off the from tag like every other phone does.
      82aa3314
  7. 12 11月, 2014 6 次提交