2004-03-06 21:11:19 +01:00
|
|
|
/* asshelp.h - Helper functions for Assuan
|
2007-11-19 17:03:50 +01:00
|
|
|
* Copyright (C) 2004, 2007 Free Software Foundation, Inc.
|
2004-03-06 21:11:19 +01:00
|
|
|
*
|
|
|
|
* This file is part of GnuPG.
|
|
|
|
*
|
|
|
|
* GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-04 21:49:40 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2004-03-06 21:11:19 +01:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* GnuPG is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2007-07-04 21:49:40 +02:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2004-03-06 21:11:19 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GNUPG_COMMON_ASSHELP_H
|
|
|
|
#define GNUPG_COMMON_ASSHELP_H
|
|
|
|
|
|
|
|
#include <assuan.h>
|
|
|
|
#include <gpg-error.h>
|
|
|
|
|
2009-07-07 12:02:41 +02:00
|
|
|
#include "session-env.h"
|
|
|
|
|
2010-03-11 13:34:11 +01:00
|
|
|
void setup_libassuan_logging (unsigned int *debug_var_address);
|
|
|
|
|
|
|
|
|
2004-03-06 21:11:19 +01:00
|
|
|
gpg_error_t
|
|
|
|
send_pinentry_environment (assuan_context_t ctx,
|
2004-12-18 11:22:10 +01:00
|
|
|
gpg_err_source_t errsource,
|
2004-03-06 21:11:19 +01:00
|
|
|
const char *opt_lc_ctype,
|
2007-11-19 17:03:50 +01:00
|
|
|
const char *opt_lc_messages,
|
2009-07-07 12:02:41 +02:00
|
|
|
session_env_t session_env);
|
2004-03-06 21:11:19 +01:00
|
|
|
|
2007-06-21 20:44:48 +02:00
|
|
|
/* This fucntion is used by the call-agent.c modules to fire up a new
|
2009-07-07 12:02:41 +02:00
|
|
|
agent. */
|
2007-06-21 20:44:48 +02:00
|
|
|
gpg_error_t
|
|
|
|
start_new_gpg_agent (assuan_context_t *r_ctx,
|
|
|
|
gpg_err_source_t errsource,
|
|
|
|
const char *homedir,
|
|
|
|
const char *agent_program,
|
|
|
|
const char *opt_lc_ctype,
|
|
|
|
const char *opt_lc_messages,
|
2009-07-07 12:02:41 +02:00
|
|
|
session_env_t session_env,
|
2007-06-21 20:44:48 +02:00
|
|
|
int verbose, int debug,
|
|
|
|
gpg_error_t (*status_cb)(ctrl_t, int, ...),
|
|
|
|
ctrl_t status_cb_arg);
|
|
|
|
|
2010-08-16 13:03:43 +02:00
|
|
|
/* This function is used to connect to the dirmngr. On some platforms
|
|
|
|
the function is able starts a dirmngr process if needed. */
|
|
|
|
gpg_error_t
|
|
|
|
start_new_dirmngr (assuan_context_t *r_ctx,
|
|
|
|
gpg_err_source_t errsource,
|
|
|
|
const char *homedir,
|
|
|
|
const char *dirmngr_program,
|
|
|
|
int verbose, int debug,
|
|
|
|
gpg_error_t (*status_cb)(ctrl_t, int, ...),
|
|
|
|
ctrl_t status_cb_arg);
|
|
|
|
|
|
|
|
|
2004-03-06 21:11:19 +01:00
|
|
|
|
|
|
|
#endif /*GNUPG_COMMON_ASSHELP_H*/
|