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