| 
									
										
										
										
											2005-07-19 23:17:02 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2005-09-14 20:46:50 +00:00
										 |  |  |  * Asterisk -- An open source telephony toolkit. | 
					
						
							| 
									
										
										
										
											2005-07-19 23:17:02 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-09-14 20:46:50 +00:00
										 |  |  |  * Copyright (C) 1999 - 2005, Digium, Inc. | 
					
						
							| 
									
										
										
										
											2005-07-19 23:17:02 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Kevin P. Fleming <kpfleming@digium.com> | 
					
						
							| 
									
										
										
										
											2005-09-14 20:46:50 +00:00
										 |  |  |  * Mark Spencer <markster@digium.com> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * See http://www.asterisk.org for more information about
 | 
					
						
							|  |  |  |  * the Asterisk project. Please do not directly contact | 
					
						
							|  |  |  |  * any of the maintainers of this project for assistance; | 
					
						
							|  |  |  |  * the project provides a web site, mailing lists and IRC | 
					
						
							|  |  |  |  * channels for your use. | 
					
						
							| 
									
										
										
										
											2005-07-19 23:17:02 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This program is free software, distributed under the terms of | 
					
						
							| 
									
										
										
										
											2005-09-14 20:46:50 +00:00
										 |  |  |  * the GNU General Public License Version 2. See the LICENSE file | 
					
						
							|  |  |  |  * at the top of the source tree. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-10-24 20:12:06 +00:00
										 |  |  | /*! \file
 | 
					
						
							| 
									
										
										
										
											2005-09-14 20:46:50 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-10-24 20:12:06 +00:00
										 |  |  |  * \brief Network socket handling | 
					
						
							| 
									
										
										
										
											2005-12-30 21:18:06 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * \author Kevin P. Fleming <kpfleming@digium.com> | 
					
						
							|  |  |  |  * \author Mark Spencer <markster@digium.com> | 
					
						
							| 
									
										
										
										
											2005-07-19 23:17:02 +00:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-06-07 18:54:56 +00:00
										 |  |  | #include "asterisk.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ASTERISK_FILE_VERSION(__FILE__, "$Revision$") | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-19 20:25:37 +00:00
										 |  |  | #if defined(__OpenBSD__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__Darwin__)
 | 
					
						
							|  |  |  | #include <net/if_dl.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-07-19 23:17:02 +00:00
										 |  |  | #if defined (SOLARIS)
 | 
					
						
							|  |  |  | #include <sys/sockio.h>
 | 
					
						
							| 
									
										
										
										
											2008-06-19 20:25:37 +00:00
										 |  |  | #elif defined(HAVE_GETIFADDRS)
 | 
					
						
							|  |  |  | #include <ifaddrs.h>
 | 
					
						
							| 
									
										
										
										
											2005-07-19 23:17:02 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "asterisk/netsock.h"
 | 
					
						
							|  |  |  | #include "asterisk/utils.h"
 | 
					
						
							| 
									
										
										
										
											2008-03-20 17:45:29 +00:00
										 |  |  | #include "asterisk/astobj.h"
 | 
					
						
							| 
									
										
										
										
											2005-07-19 23:17:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct ast_netsock { | 
					
						
							|  |  |  | 	ASTOBJ_COMPONENTS(struct ast_netsock); | 
					
						
							|  |  |  | 	struct sockaddr_in bindaddr; | 
					
						
							|  |  |  | 	int sockfd; | 
					
						
							|  |  |  | 	int *ioref; | 
					
						
							|  |  |  | 	struct io_context *ioc; | 
					
						
							|  |  |  | 	void *data; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct ast_netsock_list { | 
					
						
							|  |  |  | 	ASTOBJ_CONTAINER_COMPONENTS(struct ast_netsock); | 
					
						
							|  |  |  | 	struct io_context *ioc; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void ast_netsock_destroy(struct ast_netsock *netsock) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	ast_io_remove(netsock->ioc, netsock->ioref); | 
					
						
							|  |  |  | 	close(netsock->sockfd); | 
					
						
							| 
									
										
										
										
											2007-06-06 21:20:11 +00:00
										 |  |  | 	ast_free(netsock); | 
					
						
							| 
									
										
										
										
											2005-07-19 23:17:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct ast_netsock_list *ast_netsock_list_alloc(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2006-05-10 19:45:45 +00:00
										 |  |  | 	return ast_calloc(1, sizeof(struct ast_netsock_list)); | 
					
						
							| 
									
										
										
										
											2005-07-19 23:17:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ast_netsock_init(struct ast_netsock_list *list) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	memset(list, 0, sizeof(*list)); | 
					
						
							|  |  |  | 	ASTOBJ_CONTAINER_INIT(list); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ast_netsock_release(struct ast_netsock_list *list) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	ASTOBJ_CONTAINER_DESTROYALL(list, ast_netsock_destroy); | 
					
						
							|  |  |  | 	ASTOBJ_CONTAINER_DESTROY(list); | 
					
						
							| 
									
										
										
										
											2009-10-08 19:35:30 +00:00
										 |  |  | 	ast_free(list); | 
					
						
							| 
									
										
										
										
											2005-07-19 23:17:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct ast_netsock *ast_netsock_find(struct ast_netsock_list *list, | 
					
						
							|  |  |  | 				     struct sockaddr_in *sa) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct ast_netsock *sock = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ASTOBJ_CONTAINER_TRAVERSE(list, !sock, { | 
					
						
							|  |  |  | 		ASTOBJ_RDLOCK(iterator); | 
					
						
							|  |  |  | 		if (!inaddrcmp(&iterator->bindaddr, sa)) | 
					
						
							|  |  |  | 			sock = iterator; | 
					
						
							|  |  |  | 		ASTOBJ_UNLOCK(iterator); | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return sock; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-30 16:16:26 +00:00
										 |  |  | struct ast_netsock *ast_netsock_bindaddr(struct ast_netsock_list *list, struct io_context *ioc, struct sockaddr_in *bindaddr, int tos, int cos, ast_io_cb callback, void *data) | 
					
						
							| 
									
										
										
										
											2005-07-19 23:17:02 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int netsocket = -1; | 
					
						
							|  |  |  | 	int *ioref; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	struct ast_netsock *ns; | 
					
						
							| 
									
										
										
										
											2007-04-02 16:08:33 +00:00
										 |  |  | 	const int reuseFlag = 1; | 
					
						
							| 
									
										
										
										
											2005-07-19 23:17:02 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* Make a UDP socket */ | 
					
						
							|  |  |  | 	netsocket = socket(AF_INET, SOCK_DGRAM, IPPROTO_IP); | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	if (netsocket < 0) { | 
					
						
							|  |  |  | 		ast_log(LOG_ERROR, "Unable to create network socket: %s\n", strerror(errno)); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2007-04-02 16:08:33 +00:00
										 |  |  | 	if (setsockopt(netsocket, SOL_SOCKET, SO_REUSEADDR, (char *)&reuseFlag, sizeof reuseFlag) < 0) { | 
					
						
							|  |  |  | 			ast_log(LOG_WARNING, "Error setting SO_REUSEADDR on sockfd '%d'\n", netsocket); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-07-19 23:17:02 +00:00
										 |  |  | 	if (bind(netsocket,(struct sockaddr *)bindaddr, sizeof(struct sockaddr_in))) { | 
					
						
							| 
									
										
										
										
											2006-07-21 17:31:28 +00:00
										 |  |  | 		ast_log(LOG_ERROR, "Unable to bind to %s port %d: %s\n", ast_inet_ntoa(bindaddr->sin_addr), ntohs(bindaddr->sin_port), strerror(errno)); | 
					
						
							| 
									
										
										
										
											2005-07-19 23:17:02 +00:00
										 |  |  | 		close(netsocket); | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-16 10:51:53 +00:00
										 |  |  | 	ast_netsock_set_qos(netsocket, tos, cos, "IAX2"); | 
					
						
							| 
									
										
										
										
											2007-04-30 16:16:26 +00:00
										 |  |  | 		 | 
					
						
							| 
									
										
										
										
											2006-10-12 18:43:52 +00:00
										 |  |  | 	ast_enable_packet_fragmentation(netsocket); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-06 21:20:11 +00:00
										 |  |  | 	if (!(ns = ast_calloc(1, sizeof(*ns)))) { | 
					
						
							| 
									
										
										
										
											2005-07-19 23:17:02 +00:00
										 |  |  | 		close(netsocket); | 
					
						
							| 
									
										
										
										
											2006-05-10 19:45:45 +00:00
										 |  |  | 		return NULL; | 
					
						
							| 
									
										
										
										
											2005-07-19 23:17:02 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-05-10 19:45:45 +00:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	/* Establish I/O callback for socket read */ | 
					
						
							|  |  |  | 	if (!(ioref = ast_io_add(ioc, netsocket, callback, AST_IO_IN, ns))) { | 
					
						
							|  |  |  | 		close(netsocket); | 
					
						
							| 
									
										
										
										
											2007-06-06 21:20:11 +00:00
										 |  |  | 		ast_free(ns); | 
					
						
							| 
									
										
										
										
											2006-05-10 19:45:45 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	}	 | 
					
						
							|  |  |  | 	ASTOBJ_INIT(ns); | 
					
						
							|  |  |  | 	ns->ioref = ioref; | 
					
						
							|  |  |  | 	ns->ioc = ioc; | 
					
						
							|  |  |  | 	ns->sockfd = netsocket; | 
					
						
							|  |  |  | 	ns->data = data; | 
					
						
							|  |  |  | 	memcpy(&ns->bindaddr, bindaddr, sizeof(ns->bindaddr)); | 
					
						
							|  |  |  | 	ASTOBJ_CONTAINER_LINK(list, ns); | 
					
						
							| 
									
										
										
										
											2005-07-19 23:17:02 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return ns; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-16 10:51:53 +00:00
										 |  |  | int ast_netsock_set_qos(int netsocket, int tos, int cos, const char *desc) | 
					
						
							| 
									
										
										
										
											2007-04-30 16:16:26 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int res; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	if ((res = setsockopt(netsocket, IPPROTO_IP, IP_TOS, &tos, sizeof(tos)))) | 
					
						
							| 
									
										
										
										
											2007-12-16 10:51:53 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to set %s TOS to %d, may be you have no root privileges\n", desc, tos); | 
					
						
							|  |  |  | 	else if (tos) | 
					
						
							| 
									
										
										
										
											2008-03-04 23:04:29 +00:00
										 |  |  | 		ast_verb(2, "Using %s TOS bits %d\n", desc, tos); | 
					
						
							| 
									
										
										
										
											2007-04-30 16:16:26 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if defined(linux)								
 | 
					
						
							|  |  |  | 	if (setsockopt(netsocket, SOL_SOCKET, SO_PRIORITY, &cos, sizeof(cos))) | 
					
						
							| 
									
										
										
										
											2007-12-16 10:51:53 +00:00
										 |  |  | 		ast_log(LOG_WARNING, "Unable to set %s CoS to %d\n", desc, cos); | 
					
						
							|  |  |  | 	else if (cos) | 
					
						
							|  |  |  | 		ast_verb(2, "Using %s CoS mark %d\n", desc, cos); | 
					
						
							| 
									
										
										
										
											2007-04-30 16:16:26 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 							 | 
					
						
							|  |  |  | 	return res; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 													 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct ast_netsock *ast_netsock_bind(struct ast_netsock_list *list, struct io_context *ioc, const char *bindinfo, int defaultport, int tos, int cos, ast_io_cb callback, void *data) | 
					
						
							| 
									
										
										
										
											2005-07-19 23:17:02 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct sockaddr_in sin; | 
					
						
							|  |  |  | 	char *tmp; | 
					
						
							|  |  |  | 	char *host; | 
					
						
							|  |  |  | 	char *port; | 
					
						
							|  |  |  | 	int portno; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(&sin, 0, sizeof(sin)); | 
					
						
							|  |  |  | 	sin.sin_family = AF_INET; | 
					
						
							|  |  |  | 	sin.sin_port = htons(defaultport); | 
					
						
							|  |  |  | 	tmp = ast_strdupa(bindinfo); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	host = strsep(&tmp, ":"); | 
					
						
							|  |  |  | 	port = tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (port && ((portno = atoi(port)) > 0)) | 
					
						
							|  |  |  | 		sin.sin_port = htons(portno); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	inet_aton(host, &sin.sin_addr); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-30 16:16:26 +00:00
										 |  |  | 	return ast_netsock_bindaddr(list, ioc, &sin, tos, cos, callback, data); | 
					
						
							| 
									
										
										
										
											2005-07-19 23:17:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ast_netsock_sockfd(const struct ast_netsock *ns) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return ns ? ns-> sockfd : -1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const struct sockaddr_in *ast_netsock_boundaddr(const struct ast_netsock *ns) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return &(ns->bindaddr); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void *ast_netsock_data(const struct ast_netsock *ns) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return ns->data; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2005-10-31 23:16:27 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | void ast_netsock_unref(struct ast_netsock *ns) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	ASTOBJ_UNREF(ns, ast_netsock_destroy); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-06-10 12:48:50 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | char *ast_eid_to_str(char *s, int maxlen, struct ast_eid *eid) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int x; | 
					
						
							|  |  |  | 	char *os = s; | 
					
						
							|  |  |  | 	if (maxlen < 18) { | 
					
						
							|  |  |  | 		if (s && (maxlen > 0)) | 
					
						
							|  |  |  | 			*s = '\0'; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		for (x = 0; x < 5; x++) { | 
					
						
							|  |  |  | 			sprintf(s, "%02x:", eid->eid[x]); | 
					
						
							|  |  |  | 			s += 3; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		sprintf(s, "%02x", eid->eid[5]); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return os; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void ast_set_default_eid(struct ast_eid *eid) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2010-12-10 16:26:46 +00:00
										 |  |  | #if defined(SIOCGIFHWADDR) && defined(HAVE_STRUCT_IFREQ_IFR_IFRU_IFRU_HWADDR)
 | 
					
						
							| 
									
										
										
										
											2008-06-10 12:48:50 +00:00
										 |  |  | 	int s, x = 0; | 
					
						
							|  |  |  | 	char eid_str[20]; | 
					
						
							|  |  |  | 	struct ifreq ifr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	s = socket(AF_INET, SOCK_STREAM, 0); | 
					
						
							|  |  |  | 	if (s < 0) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	for (x = 0; x < 10; x++) { | 
					
						
							|  |  |  | 		memset(&ifr, 0, sizeof(ifr)); | 
					
						
							|  |  |  | 		snprintf(ifr.ifr_name, sizeof(ifr.ifr_name), "eth%d", x); | 
					
						
							|  |  |  | 		if (ioctl(s, SIOCGIFHWADDR, &ifr)) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		memcpy(eid, ((unsigned char *)&ifr.ifr_hwaddr) + 2, sizeof(*eid)); | 
					
						
							|  |  |  | 		ast_debug(1, "Seeding global EID '%s' from '%s' using 'siocgifhwaddr'\n", ast_eid_to_str(eid_str, sizeof(eid_str), eid), ifr.ifr_name); | 
					
						
							|  |  |  | 		close(s); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	close(s); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #if defined(ifa_broadaddr) && !defined(SOLARIS)
 | 
					
						
							|  |  |  | 	char eid_str[20]; | 
					
						
							|  |  |  | 	struct ifaddrs *ifap; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	if (getifaddrs(&ifap) == 0) { | 
					
						
							|  |  |  | 		struct ifaddrs *p; | 
					
						
							|  |  |  | 		for (p = ifap; p; p = p->ifa_next) { | 
					
						
							|  |  |  | 			if ((p->ifa_addr->sa_family == AF_LINK) && !(p->ifa_flags & IFF_LOOPBACK) && (p->ifa_flags & IFF_RUNNING)) { | 
					
						
							|  |  |  | 				struct sockaddr_dl* sdp = (struct sockaddr_dl*) p->ifa_addr; | 
					
						
							|  |  |  | 				memcpy(&(eid->eid), sdp->sdl_data + sdp->sdl_nlen, 6); | 
					
						
							|  |  |  | 				ast_debug(1, "Seeding global EID '%s' from '%s' using 'getifaddrs'\n", ast_eid_to_str(eid_str, sizeof(eid_str), eid), p->ifa_name); | 
					
						
							|  |  |  | 				freeifaddrs(ifap); | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		freeifaddrs(ifap); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2008-06-12 14:06:38 +00:00
										 |  |  | 	ast_debug(1, "No ethernet interface found for seeding global EID. You will have to set it manually.\n"); | 
					
						
							| 
									
										
										
										
											2008-06-10 12:48:50 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ast_str_to_eid(struct ast_eid *eid, const char *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned int eid_int[6]; | 
					
						
							|  |  |  | 	int x; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-10 19:20:57 +00:00
										 |  |  | 	if (sscanf(s, "%2x:%2x:%2x:%2x:%2x:%2x", &eid_int[0], &eid_int[1], &eid_int[2], | 
					
						
							| 
									
										
										
										
											2008-06-10 12:48:50 +00:00
										 |  |  | 		 &eid_int[3], &eid_int[4], &eid_int[5]) != 6) | 
					
						
							|  |  |  | 		 	return -1; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	for (x = 0; x < 6; x++) | 
					
						
							|  |  |  | 		eid->eid[x] = eid_int[x]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int ast_eid_cmp(const struct ast_eid *eid1, const struct ast_eid *eid2) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return memcmp(eid1, eid2, sizeof(*eid1)); | 
					
						
							|  |  |  | } |