diff options
author | Werner Koch <[email protected]> | 2010-08-06 13:52:01 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2010-08-06 13:52:01 +0000 |
commit | dc5a80930b2c18011a40f1d929119c2545cc1124 (patch) | |
tree | a74bce4e2b437331578c2ab9f1568dcecc2acf21 /dirmngr/misc.h | |
parent | Simplified http.c. (diff) | |
download | gnupg-dc5a80930b2c18011a40f1d929119c2545cc1124.tar.gz gnupg-dc5a80930b2c18011a40f1d929119c2545cc1124.zip |
More work on the dirmngr. It now builds for W32 and W32CE and quick
tests show that it works on W32.
Diffstat (limited to 'dirmngr/misc.h')
-rw-r--r-- | dirmngr/misc.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/dirmngr/misc.h b/dirmngr/misc.h index b721549ec..928bf78ae 100644 --- a/dirmngr/misc.h +++ b/dirmngr/misc.h @@ -73,15 +73,9 @@ void dump_cert (const char *text, ksba_cert_t cert); URL. */ char *host_and_port_from_url (const char *url, int *port); +/* Create a KSBA reader object and connect it to the estream FP. */ +gpg_error_t create_estream_ksba_reader (ksba_reader_t *r_reader, estream_t fp); -#ifdef HAVE_FOPENCOOKIE -/* We have to implement funopen in terms of glibc's fopencookie. */ -FILE *funopen(void *cookie, - int (*readfn)(void *, char *, int), - int (*writefn)(void *, const char *, int), - fpos_t (*seekfn)(void *, fpos_t, int), - int (*closefn)(void *)); -#endif /*HAVE_FOPENCOOKIE*/ #endif /* MISC_H */ |