1 /* vim:tw=78:ts=8:sw=4:set ft=c: */
3 Copyright (C) 2006-2009 Ben Kibbey <bjk@luxsci.net>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02110-1301 USA
31 #ifndef DNS_USE_GETTIMEOFDAY_FOR_ID
32 #define DNS_USE_GETTIMEOFDAY_FOR_ID 1
35 #include <arpa/nameser.h>
47 #define N_(msgid) dgettext("libpwmd", msgid)
50 #define N_ARRAY(a) (sizeof(a)/sizeof(a[0]))
88 LIBSSH2_SESSION
*session
;
89 LIBSSH2_CHANNEL
*channel
;
90 LIBSSH2_KNOWNHOSTS
*kh
;
91 struct libssh2_knownhost
*hostent
;
94 pwmd_ssh_async_t state
;
101 pwmd_tcp_conn_t
*tcp_conn
;
102 pwmd_ip_version_t prot
;
103 pwmd_knownhost_cb_t kh_cb
;
108 pwmd_async_cmd_t cmd
;
109 pwmd_async_cmd_t lastcmd
;
110 char *result
; // not related to anything the client can see.
112 pid_t pid
; // for pinentry timeouts when used with ..async2().
113 assuan_context_t pctx
;
114 int nb_fd
; // for pwmd_open/save_async2().
123 char *pinentry_display
;
131 int pinentry_timeout
;
132 pwmd_passphrase_cb_t passfunc
;
134 pwmd_status_cb_t status_func
;
136 pwmd_inquire_cb_t inquire_func
;
139 int (*_inquire_func
)(void *, const char *);
153 char password
[ASSUAN_LINELENGTH
+1];
156 gpg_error_t
_assuan_command(pwm_t
*pwm
, assuan_context_t ctx
,
157 char **result
, const char *cmd
)
158 __attribute__ ((visibility ("hidden")));
160 gpg_error_t
_connect_finalize(pwm_t
*pwm
)
161 __attribute__ ((visibility ("hidden")));