~ubuntu-branches/ubuntu/hardy/gnupg2/hardy

« back to all changes in this revision

Viewing changes to agent/agent.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Bienia
  • Date: 2007-03-09 12:32:03 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20070309123203-64xnl30ctoyv4pcv
Tags: 2.0.3-1ubuntu1
* Merge from Debian unstable. Remaining changes:
  - Remove libpcsclite-dev, libopensc2-dev build dependencies (they are in
    universe).
  - Build-depend on libcurl3-gnutls-dev
  - Include /doc files as done with gnupg
  - debian/rules: add doc/com-certs.pem to the docs for gpgsm
  - g10/call-agent.c: set DBG_ASSUAN to 0 to suppress a debug message
  - debian/README.Debian: remove note the gnupg2 isn't released yet.
  - debian/control: Change Maintainer/XSBC-Original-Maintainer field.

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
  int disable_scdaemon;         /* Never use the SCdaemon. */
73
73
  int no_grab;         /* Don't let the pinentry grab the keyboard */
74
74
 
 
75
  /* The name of the file pinentry shall tocuh before exiting.  If
 
76
     this is not set the filoe name of the standard socket is used. */
 
77
  const char *pinentry_touch_file;
 
78
 
75
79
  /* The default and maximum TTL of cache entries. */
76
80
  unsigned long def_cache_ttl;     /* Default. */
77
81
  unsigned long def_cache_ttl_ssh; /* for SSH. */
186
190
 
187
191
/*-- gpg-agent.c --*/
188
192
void agent_exit (int rc) JNLIB_GCC_A_NR; /* Also implemented in other tools */
 
193
const char *get_agent_socket_name (void);
189
194
 
190
195
/*-- command.c --*/
191
196
gpg_error_t agent_write_status (ctrl_t ctrl, const char *keyword, ...);