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

« back to all changes in this revision

Viewing changes to common/http.h

  • Committer: Bazaar Package Importer
  • Author(s): Eric Dorland
  • Date: 2009-08-23 20:48:11 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20090823204811-cajik24rci4xszia
Tags: 2.0.12-1
* New upstream release. (Closes: #499569, #463270, #446494, #314068, 
  #519375, #514587)
* debian/control: Change build dependency on gs to ghoscript, since
  ghoscript has been replaced.
* debian/compat: Use debhelper v7.
* debian/control: Update Standards-Version to 3.8.2.
* debian/control: Use ${misc:Depends}.
* configure.ac: Override pkgdatadir so that it points to
  /usr/share/gnupg2. (Closes: #528734)
* debian/rules: No longer need to specify pkgdatadir at make install
  time.

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
  { 
64
64
    HTTP_FLAG_TRY_PROXY = 1,
65
65
    HTTP_FLAG_NO_SHUTDOWN = 2,
66
 
    HTTP_FLAG_TRY_SRV = 4,
67
 
    HTTP_FLAG_LOG_RESP = 8,
68
 
    HTTP_FLAG_NEED_HEADER = 16
 
66
    HTTP_FLAG_LOG_RESP = 4,
 
67
    HTTP_FLAG_NEED_HEADER = 8
69
68
  };
70
69
 
71
70
struct http_context_s;
82
81
                       const char *auth,
83
82
                       unsigned int flags,
84
83
                       const char *proxy,
85
 
                       void *tls_context);
 
84
                       void *tls_context,
 
85
                       const char *srvtag,
 
86
                       strlist_t headers);
86
87
 
87
88
void http_start_data (http_t hd);
88
89
 
95
96
                                const char *auth,
96
97
                                unsigned int flags,
97
98
                                const char *proxy,
98
 
                                void *tls_context);
 
99
                                void *tls_context,
 
100
                                const char *srvtag,
 
101
                                strlist_t headers);
99
102
 
100
103
#ifdef HTTP_USE_ESTREAM
101
104
estream_t http_get_read_ptr (http_t hd);