diff options
author | djm@openbsd.org <djm@openbsd.org> | 2023-10-12 00:42:26 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2023-10-12 01:00:13 +0200 |
commit | a752a6c0e1001f93696d7025f0c867f0376e2ecf (patch) | |
tree | dbe5b78436bc288efe6f458e167864f38056f768 /misc.h | |
parent | upstream: add support for reading ED25519 private keys in PEM PKCS8 (diff) | |
download | openssh-a752a6c0e1001f93696d7025f0c867f0376e2ecf.tar.xz openssh-a752a6c0e1001f93696d7025f0c867f0376e2ecf.zip |
upstream: add ChannelTimeout support to the client, mirroring the
same option in the server. ok markus@
OpenBSD-Commit-ID: 55630b26f390ac063980cfe7ad8c54b03284ef02
Diffstat (limited to 'misc.h')
-rw-r--r-- | misc.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: misc.h,v 1.105 2023/08/28 03:31:16 djm Exp $ */ +/* $OpenBSD: misc.h,v 1.106 2023/10/11 22:42:26 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -95,6 +95,7 @@ int valid_env_name(const char *); const char *atoi_err(const char *, int *); int parse_absolute_time(const char *, uint64_t *); void format_absolute_time(uint64_t, char *, size_t); +int parse_pattern_interval(const char *, char **, int *); int path_absolute(const char *); int stdfd_devnull(int, int, int); int lib_contains_symbol(const char *, const char *); |