diff options
author | Eduardo Chappa <chappa@washington.edu> | 2018-05-27 15:48:21 -0600 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2018-05-27 15:48:21 -0600 |
commit | 2e72300b0d571c2b319e0e5c827ddc45f011f964 (patch) | |
tree | 1ab904e5965602e4565497dd51bc3af2a46681da /pith/state.h | |
parent | ae67ebf820817f01e77471b5bc7da9885b159bba (diff) | |
download | alpine-2e72300b0d571c2b319e0e5c827ddc45f011f964.tar.xz |
* Add new variable close-connection-timeout, which tells Alpine to close
a connection that is having problems being kept alive after the
number of seconds configured in this variable, if the connection has
not recovered. The default is 0, which means to keep the connection
alive and wait for the connection to recover.
Diffstat (limited to 'pith/state.h')
-rw-r--r-- | pith/state.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pith/state.h b/pith/state.h index d0f76cbc..30c45527 100644 --- a/pith/state.h +++ b/pith/state.h @@ -207,6 +207,9 @@ struct pine { unsigned beginning_of_month:1; unsigned beginning_of_year:1; + unsigned can_interrupt:1; + long int close_connection_timeout; + unsigned viewer_overlap:8; unsigned scroll_margin:8; unsigned remote_abook_history:8; |