• Home
  • Raw
  • Download

Lines Matching +full:- +full:- +full:option

10 --------
15 -----------
24 -------
26 .. option:: -v, --verbose
30 this option multiple times increases verbosity.
32 .. option:: -n, --null-out
36 .. option:: -O, --remote-name
43 .. option:: -t, --timeout=<DURATION>
48 .. option:: -w, --window-bits=<N>
50 Sets the stream level initial window size to 2\*\*<N>-1.
52 .. option:: -W, --connection-window-bits=<N>
55 2\*\*<N>-1.
57 .. option:: -a, --get-assets
67 .. option:: -s, --stat
71 .. option:: -H, --header=<HEADER>
73 Add a header to the requests. Example: :option:`-H`\':method: PUT'
75 .. option:: --trailer=<HEADER>
79 with ':'). To send trailer, one must use :option:`-d` option to
80 send request body. Example: :option:`--trailer` 'foo: bar'.
82 .. option:: --cert=<CERT>
87 .. option:: --key=<KEY>
92 .. option:: -d, --data=<PATH>
94 Post FILE to server. If '-' is given, data will be read
97 .. option:: -m, --multiply=<N>
100 requested twice. This option disables it too.
102 .. option:: -u, --upgrade
104 Perform HTTP Upgrade for HTTP/2. This option is ignored
105 if the request URI has https scheme. If :option:`-d` is used, the
108 .. option:: -p, --weight=<WEIGHT>
110 Sets weight of given URI. This option can be used
111 multiple times, and N-th :option:`-p` option sets weight of N-th
112 URI in the command line. If the number of :option:`-p` option is
113 less than the number of URI, the last :option:`-p` option value is
114 repeated. If there is no :option:`-p` option, default weight, 16,
118 .. option:: -M, --peer-max-concurrent-streams=<N>
125 .. option:: -c, --header-table-size=<SIZE>
127 Specify decoder header table size. If this option is
134 .. option:: --encoder-header-table-size=<SIZE>
139 this option value and the value which server specified.
141 .. option:: -b, --padding=<N>
146 .. option:: -r, --har=<PATH>
148 Output HTTP transactions <PATH> in HAR format. If '-'
151 .. option:: --color
155 .. option:: --continuation
159 .. option:: --no-content-length
161 Don't send content-length header field.
163 .. option:: --no-dep
167 .. option:: --hexdump
173 .. option:: --no-push
177 .. option:: --max-concurrent-streams=<N>
182 .. option:: --expect-continue
186 Continue interim response. This option is ignored unless
187 combined with the :option:`-d` option.
189 .. option:: -y, --no-verify-peer
194 .. option:: --version
198 .. option:: -h, --help
213 -------------------------
216 :option:`--no-dep` is used. nghttp mimics the way Firefox employs to
228 .. code-block:: text
230 +-----+
232 +-----+
237 +-----+ +-----+ +-----+
239 +-----+ +-----+ +-----+
243 +-----+ +-----+
245 +-----+ +-----+
248 The stream 0 is non-existence stream, and forms the root of the tree.
251 The URIs given in the command-line depend on stream 11 with the weight
252 given in :option:`-p` option, which defaults to 16.
254 If :option:`-a` option is used, nghttp parses the resource pointed by
255 URI given in command-line as html, and extracts resource links from
266 --------