summaryrefslogtreecommitdiff
path: root/monitor_wrap.h
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2019-01-19 21:43:56 +0000
committerDamien Miller <djm@mindrot.org>2019-01-20 09:45:18 +1100
commit04c091fc199f17dacf8921df0a06634b454e2722 (patch)
tree76b75b5cf39f940bfc418fa7fe6e9ae3dc5c2569 /monitor_wrap.h
parentec00f918b8ad90295044266c433340a8adc93452 (diff)
upstream: remove last references to active_state
with & ok markus@ OpenBSD-Commit-ID: 78619a50ea7e4ca2f3b54d4658b3227277490ba2
Diffstat (limited to 'monitor_wrap.h')
-rw-r--r--monitor_wrap.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/monitor_wrap.h b/monitor_wrap.h
index 8277cbf45..2b7052202 100644
--- a/monitor_wrap.h
+++ b/monitor_wrap.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: monitor_wrap.h,v 1.40 2019/01/19 21:43:07 djm Exp $ */ 1/* $OpenBSD: monitor_wrap.h,v 1.41 2019/01/19 21:43:56 djm Exp $ */
2 2
3/* 3/*
4 * Copyright 2002 Niels Provos <provos@citi.umich.edu> 4 * Copyright 2002 Niels Provos <provos@citi.umich.edu>
@@ -42,8 +42,8 @@ struct sshauthopt;
42void mm_log_handler(LogLevel, const char *, void *); 42void mm_log_handler(LogLevel, const char *, void *);
43int mm_is_monitor(void); 43int mm_is_monitor(void);
44DH *mm_choose_dh(int, int, int); 44DH *mm_choose_dh(int, int, int);
45int mm_sshkey_sign(struct sshkey *, u_char **, size_t *, const u_char *, size_t, 45int mm_sshkey_sign(struct ssh *, struct sshkey *, u_char **, size_t *,
46 const char *, u_int compat); 46 const u_char *, size_t, const char *, u_int compat);
47void mm_inform_authserv(char *, char *); 47void mm_inform_authserv(char *, char *);
48struct passwd *mm_getpwnamallow(struct ssh *, const char *); 48struct passwd *mm_getpwnamallow(struct ssh *, const char *);
49char *mm_auth2_read_banner(void); 49char *mm_auth2_read_banner(void);
@@ -52,7 +52,7 @@ int mm_key_allowed(enum mm_keytype, const char *, const char *, struct sshkey *,
52 int, struct sshauthopt **); 52 int, struct sshauthopt **);
53int mm_user_key_allowed(struct ssh *, struct passwd *, struct sshkey *, int, 53int mm_user_key_allowed(struct ssh *, struct passwd *, struct sshkey *, int,
54 struct sshauthopt **); 54 struct sshauthopt **);
55int mm_hostbased_key_allowed(struct passwd *, const char *, 55int mm_hostbased_key_allowed(struct ssh *, struct passwd *, const char *,
56 const char *, struct sshkey *); 56 const char *, struct sshkey *);
57int mm_sshkey_verify(const struct sshkey *, const u_char *, size_t, 57int mm_sshkey_verify(const struct sshkey *, const u_char *, size_t,
58 const u_char *, size_t, const char *, u_int); 58 const u_char *, size_t, const char *, u_int);
@@ -89,8 +89,7 @@ void mm_session_pty_cleanup2(struct Session *);
89struct newkeys *mm_newkeys_from_blob(u_char *, int); 89struct newkeys *mm_newkeys_from_blob(u_char *, int);
90int mm_newkeys_to_blob(int, u_char **, u_int *); 90int mm_newkeys_to_blob(int, u_char **, u_int *);
91 91
92void mm_get_keystate(struct monitor *); 92void mm_send_keystate(struct ssh *, struct monitor*);
93void mm_send_keystate(struct monitor*);
94 93
95/* bsdauth */ 94/* bsdauth */
96int mm_bsdauth_query(void *, char **, char **, u_int *, char ***, u_int **); 95int mm_bsdauth_query(void *, char **, char **, u_int *, char ***, u_int **);