Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 66024
Collapse All | Expand All

(-)evolution-2.0.1/camel/camel-service.c (-1 / +1 lines)
Lines 874-880 Link Here
874
#endif /* NEED_ADDRINFO */
874
#endif /* NEED_ADDRINFO */
875
875
876
struct addrinfo *
876
struct addrinfo *
877
camel_getaddrinfo(const char *name, const char *service, const struct addrinfo *hints, CamelException *ex)
877
camel_getaddrinfo(const char *name, const char *service, struct addrinfo *hints, CamelException *ex)
878
{
878
{
879
	struct _addrinfo_msg *msg;
879
	struct _addrinfo_msg *msg;
880
	struct addrinfo *res = NULL;
880
	struct addrinfo *res = NULL;
(-)evolution-2.0.1/camel/camel-service.h (-1 / +1 lines)
Lines 186-192 Link Here
186
186
187
/* new hostname interfaces */
187
/* new hostname interfaces */
188
struct addrinfo *camel_getaddrinfo(const char *name, const char *service,
188
struct addrinfo *camel_getaddrinfo(const char *name, const char *service,
189
				   const struct addrinfo *hints, CamelException *ex);
189
				   struct addrinfo *hints, CamelException *ex);
190
void camel_freeaddrinfo(struct addrinfo *host);
190
void camel_freeaddrinfo(struct addrinfo *host);
191
int camel_getnameinfo(const struct sockaddr *sa, socklen_t salen, char **host, char **serv,
191
int camel_getnameinfo(const struct sockaddr *sa, socklen_t salen, char **host, char **serv,
192
		      int flags, CamelException *ex);
192
		      int flags, CamelException *ex);

Return to bug 66024