uhub/src/network/connection.c

148 lines
2.7 KiB
C
Raw Normal View History

/*
* uhub - A tiny ADC p2p connection hub
2012-10-12 12:24:03 +00:00
* Copyright (C) 2007-2012, Jan Vidar Krey
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "uhub.h"
#include "network/common.h"
static int is_blocked_or_interrupted()
{
int err = net_error();
return
#ifdef WINSOCK
err == WSAEWOULDBLOCK
#else
err == EWOULDBLOCK
#endif
|| err == EINTR;
}
ssize_t net_con_send(struct net_connection* con, const void* buf, size_t len)
{
int ret;
#ifdef SSL_SUPPORT
if (!con->ssl)
{
#endif
ret = net_send(con->sd, buf, len, UHUB_SEND_SIGNAL);
if (ret == -1)
{
if (is_blocked_or_interrupted())
return 0;
return -1;
}
#ifdef SSL_SUPPORT
}
else
{
2012-10-12 12:24:03 +00:00
ret = net_ssl_send(con, buf, len);
}
#endif /* SSL_SUPPORT */
return ret;
}
ssize_t net_con_recv(struct net_connection* con, void* buf, size_t len)
{
int ret;
#ifdef SSL_SUPPORT
2012-10-12 12:24:03 +00:00
if (!con->ssl)
{
#endif
ret = net_recv(con->sd, buf, len, 0);
if (ret == -1)
{
if (is_blocked_or_interrupted())
return 0;
return -net_error();
}
else if (ret == 0)
{
return -1;
}
#ifdef SSL_SUPPORT
}
else
{
2012-10-12 12:24:03 +00:00
ret = net_ssl_recv(con, buf, len);
}
#endif /* SSL_SUPPORT */
return ret;
}
ssize_t net_con_peek(struct net_connection* con, void* buf, size_t len)
{
int ret = net_recv(con->sd, buf, len, MSG_PEEK);
if (ret == -1)
{
if (is_blocked_or_interrupted())
return 0;
return -net_error();
}
else if (ret == 0)
return -1;
return ret;
}
#ifdef SSL_SUPPORT
int net_con_is_ssl(struct net_connection* con)
{
2012-10-12 12:24:03 +00:00
return !!con->ssl;
}
#endif /* SSL_SUPPORT */
int net_con_get_sd(struct net_connection* con)
{
return con->sd;
}
void* net_con_get_ptr(struct net_connection* con)
{
return con->ptr;
}
void net_con_destroy(struct net_connection* con)
{
2010-08-23 19:40:07 +00:00
#ifdef SSL_SUPPORT
2012-10-12 12:24:03 +00:00
if (con->ssl)
net_ssl_destroy(con);
2010-08-23 19:40:07 +00:00
#endif
hub_free(con);
}
void net_con_callback(struct net_connection* con, int events)
{
if (con->flags & NET_CLEANUP)
2010-01-22 17:52:38 +00:00
return;
if (events == NET_EVENT_TIMEOUT)
{
2012-09-27 08:45:39 +00:00
LOG_TRACE("net_con_callback(%p, TIMEOUT)", con);
con->callback(con, events, con->ptr);
2010-01-22 17:52:38 +00:00
return;
}
2010-01-22 17:52:38 +00:00
#ifdef SSL_SUPPORT
if (con->ssl)
2012-10-12 12:24:03 +00:00
net_ssl_callback(con, events);
else
2010-01-22 17:52:38 +00:00
#endif
con->callback(con, events, con->ptr);
}