~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, Michael Bienia, Kees Cook
  • Date: 2006-12-07 00:28:23 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20061207002823-0i7ittrpmsm1nv0i
Tags: 2.0.1-0ubuntu1
[ Michael Bienia ]
* New upstream version.
* Remaining changes:
  - Remove libpcsclite-dev, libopensc2-dev build dependencies (they are in
    universe).
* g10/encr-data.c: remotely controllable function pointer (CVE-2006-6235)
* debian/control: add libcurl3-gnutls-dev to build-depends 
  (Closes Ubuntu: #62864)

[ Kees Cook ]
* debian/rules: include doc/ files as done with gnupg

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
/* Collection of data per session (aka connection). */
113
113
struct server_control_s 
114
114
{
 
115
  /* Private data used to fire up the connection thread.  We use this
 
116
     structure do avoid an extra allocation for just a few bytes. */
 
117
  struct {
 
118
    int fd;
 
119
  } thread_startup;
 
120
  
115
121
  /* Private data of the server (command.c). */
116
122
  struct server_local_s *server_local;
117
123
 
178
184
 
179
185
/*-- gpg-agent.c --*/
180
186
void agent_exit (int rc) JNLIB_GCC_A_NR; /* Also implemented in other tools */
181
 
void agent_init_default_ctrl (struct server_control_s *ctrl);
182
187
 
183
188
/*-- command.c --*/
184
189
gpg_error_t agent_write_status (ctrl_t ctrl, const char *keyword, ...);
185
 
void start_command_handler (int, int);
 
190
void bump_key_eventcounter (void);
 
191
void bump_card_eventcounter (void);
 
192
void start_command_handler (ctrl_t, int, int);
186
193
 
187
194
/*-- command-ssh.c --*/
188
 
void start_command_handler_ssh (int);
 
195
void start_command_handler_ssh (ctrl_t, int);
189
196
 
190
197
/*-- findkey.c --*/
191
198
int agent_write_private_key (const unsigned char *grip,