quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

expect100-timeout.md (780B)


      1 ---
      2 c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
      3 SPDX-License-Identifier: curl
      4 Long: expect100-timeout
      5 Arg: <seconds>
      6 Help: How long to wait for 100-continue
      7 Protocols: HTTP
      8 Added: 7.47.0
      9 Category: http timeout
     10 Multi: single
     11 See-also:
     12   - connect-timeout
     13 Example:
     14   - --expect100-timeout 2.5 -T file $URL
     15 ---
     16 
     17 # `--expect100-timeout`
     18 
     19 Maximum time in seconds that you allow curl to wait for a 100-continue
     20 response when curl emits an Expects: 100-continue header in its request. By
     21 default curl waits one second. This option accepts decimal values. When curl
     22 stops waiting, it continues as if a response was received.
     23 
     24 The decimal value needs to be provided using a dot (`.`) as decimal separator -
     25 not the local version even if it might be using another separator.