monitor.h (10b3b54548f2290bbe8d8f88c59c28d12b7a635d) monitor.h (e146993e33182e13df79b5a957f2734f663fd836)
1/* $OpenBSD: monitor.h,v 1.15 2008/11/04 08:22:13 djm Exp $ */
1/* $OpenBSD: monitor.h,v 1.16 2011/06/17 21:44:31 djm Exp $ */
2
3/*
4 * Copyright 2002 Niels Provos <provos@citi.umich.edu>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:

--- 57 unchanged lines hidden (view full) ---

67 MONITOR_REQ_JPAKE_KEY_CONFIRM, MONITOR_ANS_JPAKE_KEY_CONFIRM,
68 MONITOR_REQ_JPAKE_CHECK_CONFIRM, MONITOR_ANS_JPAKE_CHECK_CONFIRM,
69};
70
71struct mm_master;
72struct monitor {
73 int m_recvfd;
74 int m_sendfd;
2
3/*
4 * Copyright 2002 Niels Provos <provos@citi.umich.edu>
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:

--- 57 unchanged lines hidden (view full) ---

67 MONITOR_REQ_JPAKE_KEY_CONFIRM, MONITOR_ANS_JPAKE_KEY_CONFIRM,
68 MONITOR_REQ_JPAKE_CHECK_CONFIRM, MONITOR_ANS_JPAKE_CHECK_CONFIRM,
69};
70
71struct mm_master;
72struct monitor {
73 int m_recvfd;
74 int m_sendfd;
75 int m_log_recvfd;
76 int m_log_sendfd;
75 struct mm_master *m_zback;
76 struct mm_master *m_zlib;
77 struct Kex **m_pkex;
78 pid_t m_pid;
79};
80
81struct monitor *monitor_init(void);
82void monitor_reinit(struct monitor *);

--- 15 unchanged lines hidden ---
77 struct mm_master *m_zback;
78 struct mm_master *m_zlib;
79 struct Kex **m_pkex;
80 pid_t m_pid;
81};
82
83struct monitor *monitor_init(void);
84void monitor_reinit(struct monitor *);

--- 15 unchanged lines hidden ---