~ubuntu-branches/ubuntu/raring/gnupg2/raring-proposed

« back to all changes in this revision

Viewing changes to agent/agent.h

  • Committer: Bazaar Package Importer
  • Author(s): Eric Dorland
  • Date: 2009-09-07 20:38:23 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20090907203823-d7hsk7lnfqoc4yom
Tags: 2.0.13-1
* New upstream release.
* debian/control: Depend instead of Recommend gnupg-agent. (Closes:
  #538947)

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
#include "../common/util.h"
34
34
#include "../common/membuf.h"
35
35
#include "../common/sysutils.h" /* (gnupg_fd_t) */
 
36
#include "../common/session-env.h"
36
37
 
37
38
/* To convey some special hash algorithms we use algorithm numbers
38
39
   reserved for application use. */
56
57
 
57
58
  /* Environment setting gathered at program start or changed using the
58
59
     Assuan command UPDATESTARTUPTTY. */
59
 
  char *startup_display;
60
 
  char *startup_ttyname;
61
 
  char *startup_ttytype;
 
60
  session_env_t startup_env;
62
61
  char *startup_lc_ctype;
63
62
  char *startup_lc_messages;
64
 
  char *startup_xauthority;   
65
 
  char *startup_pinentry_user_data; 
66
63
 
67
64
 
68
65
  const char *pinentry_program; /* Filename of the program to start as
142
139
  /* Private data of the SCdaemon (call-scd.c). */
143
140
  struct scd_local_s *scd_local;
144
141
 
145
 
  char *display;
146
 
  char *ttyname;
147
 
  char *ttytype;
 
142
  session_env_t session_env;
148
143
  char *lc_ctype;
149
144
  char *lc_messages;
150
 
  char *xauthority;   
151
 
  char *pinentry_user_data; 
 
145
 
152
146
  struct {
153
147
    int algo;
154
148
    unsigned char value[MAX_DIGEST_LEN];