File:  [ELWIX - Embedded LightWeight unIX -] / mqtt / src / daemon.c
Revision 1.1.2.4: download - view: text, annotated - select for diffs - revision graph
Thu Dec 1 08:15:25 2011 UTC (12 years, 7 months ago) by misho
Branches: mqtt1_0
finish accept state mashine

#include "global.h"


static int
startSession(int s, const char *csAddr)
{
	return 0;
}

/* ----------------------------------------------------------------------- */

int
Run(int sock)
{
	io_sockaddr_t sa;
	socklen_t sslen = sizeof sa.ss;
	int cli;
	char szAddr[STRSIZ] = { 0 };

	FTRACE(1);

	if (listen(sock, SOMAXCONN) == -1) {
		syslog(LOG_ERR, "Error:: listen(%d) #%d - %s\n", sock, errno, strerror(errno));
		return -1;
	}

	while (!Kill) {
		if ((cli = accept(sock, &sa.sa, &sslen)) == -1) {
			syslog(LOG_ERR, "Error:: accept() #%d - %s", errno, strerror(errno));
			continue;
		} else
			VERB(1) {
				switch (sa.sa.sa_family) {
					case AF_INET:
						inet_ntop(AF_INET, &sa.sin.sin_addr, szAddr, sslen);
						snprintf(szAddr, sizeof szAddr, "%s:%d", 
								szAddr, ntohs(sa.sin.sin_port));
						break;
					case AF_INET6:
						inet_ntop(AF_INET6, &sa.sin6.sin6_addr, szAddr, sslen);
						snprintf(szAddr, sizeof szAddr, "%s:%d", 
								szAddr, ntohs(sa.sin6.sin6_port));
						break;
					case AF_LOCAL:
						strlcpy(szAddr, sa.sun.sun_path, sizeof szAddr);
						break;
					default:
						close(cli);
						syslog(LOG_ERR, "Error:: unsupported address type %d", 
								sa.sa.sa_family);
						continue;
				}
				syslog(LOG_DEBUG, "Connected client with socket=%d from %s", cli, szAddr);
			}

		if (startSession(cli, szAddr)) {
			close(cli);
			VERB(1) syslog(LOG_DEBUG, "Terminated client with socket=%d", cli);
			continue;
		}
	}

	return 0;
}

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>