accept.c 906 Bytes
#include <errno.h>      /* for errno */

#include "socket.h"
#include "interface/class.h"
#include "interface/logger.h"

Sock
socketAccept(Sock this, char remoteAddr[16])
{
    Sock         sock;   /* Socket for client */
    unsigned int len;    /* Length of client address data structure */

    /* Set the size of the in-out parameter */
    len = sizeof(this->addr);

	sock = new(Sock, this->log, this->port);
	/**
	 * @TODO: change port to remote port on success
	 */

    /* Wait for a client to connect */
    sock->handle = accept(this->handle, (struct sockaddr *) &(sock->addr), &len);
    if (-1 == sock->handle) {
        loggerLog(this->log, LOGGER_WARNING,
                "error acception connection: %s", strerror(errno));
    } else {
        loggerLog(this->log, LOGGER_INFO,
				"handling client %s\n", inet_ntoa((sock->addr).sin_addr));
    }

    return sock;
}

// vim: set ts=4 sw=4: