diff options
author | Not Zed <NotZed@Ximian.com> | 2001-03-30 08:31:20 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2001-03-30 08:31:20 +0800 |
commit | 554de99b229180451331f81adc3f6195bf525878 (patch) | |
tree | bf56d161d8c74305a793c95bf483ba28c7caa4f8 /camel/camel-service.h | |
parent | 424506262d215dfe306aea0d0fe86833d08b82a4 (diff) | |
download | gsoc2013-evolution-554de99b229180451331f81adc3f6195bf525878.tar.gz gsoc2013-evolution-554de99b229180451331f81adc3f6195bf525878.tar.zst gsoc2013-evolution-554de99b229180451331f81adc3f6195bf525878.zip |
Not quite finished but checking in for some local frobbing.
2001-03-29 Not Zed <NotZed@Ximian.com>
* providers/smtp/camel-smtp-transport.c (smtp_connect): Free host
name info when done ... blah blah.
* camel-sasl-kerberos4.c (krb4_challenge): Free host name info
after we're done with it.
* camel-sasl-digest-md5.c (digest_md5_challenge): Free host name
info after we're done with it.
* camel-remote-store.c (remote_connect): Free the host name info
from get_host after we're finished with it.
* camel-service.c (camel_get_host_byname): New function to
lookup a name, and still be cancellable.
(camel_free_host): And a function to free the structure
returned.
(camel_service_gethost): Call get_host_byname for this.
svn path=/trunk/; revision=9033
Diffstat (limited to 'camel/camel-service.h')
-rw-r--r-- | camel/camel-service.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/camel/camel-service.h b/camel/camel-service.h index ed02f989f4..7850aca4e6 100644 --- a/camel/camel-service.h +++ b/camel/camel-service.h @@ -112,6 +112,9 @@ GList * camel_service_query_auth_types (CamelService *service, struct hostent * camel_service_gethost (CamelService *service, CamelException *ex); +/* cancellable dns lookup */ +struct hostent * camel_get_host_byname (const char *name, CamelException *ex); +void camel_free_host (struct hostent *h); /* Standard Camel function */ CamelType camel_service_get_type (void); |