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

« back to all changes in this revision

Viewing changes to keyserver/curl-shim.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Bienia
  • Date: 2007-05-15 13:54:55 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20070515135455-89qfyalmgjy6gcqw
Tags: 2.0.4-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Remove libpcsclite-dev, libopensc2-dev build dependencies (they are in
    universe).
  - Build-depend on libcurl3-gnutls-dev
  - g10/call-agent.c: set DBG_ASSUAN to 0 to suppress a debug message
  - Include /doc files as done with gnupg
  - debian/rules: add doc/com-certs.pem to the docs for gpgsm
  - debian/copyright: update download url
  - 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:
76
76
  http_t hd;
77
77
} CURL;
78
78
 
 
79
typedef struct
 
80
{
 
81
  const char **protocols;
 
82
} curl_version_info_data; 
 
83
 
79
84
#define CURL_ERROR_SIZE 256
80
85
#define CURL_GLOBAL_DEFAULT 0
 
86
#define CURLVERSION_NOW 0
81
87
 
82
88
CURLcode curl_global_init(long flags);
83
89
void curl_global_cleanup(void);
86
92
CURLcode curl_easy_perform(CURL *curl);
87
93
void curl_easy_cleanup(CURL *curl);
88
94
char *curl_escape(char *str,int len);
89
 
void curl_free(char *ptr);
 
95
#define curl_free(x) free(x)
90
96
#define curl_version() "GnuPG curl-shim "VERSION
 
97
curl_version_info_data *curl_version_info(int type);
91
98
 
92
99
#endif /* !_CURL_SHIM_H_ */