diff options
author | Dan Winship <danw@src.gnome.org> | 2000-04-06 11:52:39 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-04-06 11:52:39 +0800 |
commit | 2e4a5463075e387151afcdf61b74202a729944db (patch) | |
tree | 451716a6b189f11de18346a86716cbedf010f609 /camel/camel.h | |
parent | 080049ac37387efd71551bfdb661e15c0e1ce8ce (diff) | |
download | gsoc2013-evolution-2e4a5463075e387151afcdf61b74202a729944db.tar gsoc2013-evolution-2e4a5463075e387151afcdf61b74202a729944db.tar.gz gsoc2013-evolution-2e4a5463075e387151afcdf61b74202a729944db.tar.bz2 gsoc2013-evolution-2e4a5463075e387151afcdf61b74202a729944db.tar.lz gsoc2013-evolution-2e4a5463075e387151afcdf61b74202a729944db.tar.xz gsoc2013-evolution-2e4a5463075e387151afcdf61b74202a729944db.tar.zst gsoc2013-evolution-2e4a5463075e387151afcdf61b74202a729944db.zip |
the URL RFC says the port must be numeric, so we don't want to do
* g_url_new really wanted to take a CamelException. So, rename
Gurl to CamelURL, g_url_* to camel_url_* (with camel_url_new
taking an exception), and url-util.[ch] to camel-url.[ch]. Also
force url->port to be numeric and remove camel_service_getport. (I
was confused before: the URL RFC says the port must be numeric, so
we don't want to do getportbyname.)
svn path=/trunk/; revision=2300
Diffstat (limited to 'camel/camel.h')
-rw-r--r-- | camel/camel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel.h b/camel/camel.h index 5145b58348..a92d69e04d 100644 --- a/camel/camel.h +++ b/camel/camel.h @@ -57,12 +57,12 @@ extern "C" { #include <camel/camel-stream-fs.h> #include <camel/camel-stream-mem.h> #include <camel/camel-thread-proxy.h> +#include <camel/camel-url.h> #include <camel/data-wrapper-repository.h> #include <camel/gmime-content-field.h> #include <camel/gmime-utils.h> #include <camel/gstring-util.h> #include <camel/string-utils.h> -#include <camel/url-util.h> gint camel_init (void); |