1--- 2c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 3SPDX-License-Identifier: curl 4Long: no-keepalive 5Help: Disable TCP keepalive on the connection 6Category: connection 7Added: 7.18.0 8Multi: boolean 9See-also: 10 - keepalive-time 11Example: 12 - --no-keepalive $URL 13--- 14 15# `--no-keepalive` 16 17Disables the use of keepalive messages on the TCP connection. curl otherwise 18enables them by default. 19 20Note that this is the negated option name documented. You can thus use 21--keepalive to enforce keepalive. 22