accept.c 1.21 KB
#include <errno.h>      /* for errno */
#include <unistd.h>

#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);

	/**
	 * @TODO: Uhh, this is bad. we open a new socket additionally to
	 * the one we get from the accept call.
	 * i have to change the socket constructor to be able to create
	 * the data structure without creation of a socket at all.
	 * For now i simply close the socket here.... :D
	 */
	sock = new(Sock, this->log, this->port);
	close(sock->handle);
	/**
	 * @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 accepting 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: