2012-03-28 13:24:49 +02:00
|
|
|
#include "i2-base.h"
|
|
|
|
|
|
|
|
using namespace icinga;
|
|
|
|
|
|
|
|
void TCPSocket::MakeSocket(void)
|
|
|
|
{
|
2012-03-29 13:15:54 +02:00
|
|
|
assert(GetFD() == INVALID_SOCKET);
|
2012-03-28 13:24:49 +02:00
|
|
|
|
2012-03-29 13:15:54 +02:00
|
|
|
int fd = socket(AF_INET, SOCK_STREAM, 0);
|
|
|
|
|
2012-04-04 16:02:19 +02:00
|
|
|
if (fd == INVALID_SOCKET) {
|
|
|
|
SocketErrorEventArgs::Ptr ea = make_shared<SocketErrorEventArgs>();
|
|
|
|
#ifdef _WIN32
|
|
|
|
ea->Code = WSAGetLastError();
|
|
|
|
#else /* _WIN32 */
|
|
|
|
ea->Code = errno;
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
ea->Message = FormatErrorCode(ea->Code);
|
|
|
|
OnError(ea);
|
|
|
|
}
|
2012-03-29 13:15:54 +02:00
|
|
|
|
|
|
|
SetFD(fd);
|
2012-03-28 13:24:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void TCPSocket::Bind(unsigned short port)
|
|
|
|
{
|
|
|
|
Bind(NULL, port);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TCPSocket::Bind(const char *hostname, unsigned short port)
|
|
|
|
{
|
|
|
|
sockaddr_in sin;
|
|
|
|
|
|
|
|
memset(&sin, 0, sizeof(sin));
|
|
|
|
sin.sin_family = AF_INET;
|
|
|
|
sin.sin_addr.s_addr = hostname ? inet_addr(hostname) : htonl(INADDR_ANY);
|
|
|
|
sin.sin_port = htons(port);
|
2012-04-04 12:22:46 +02:00
|
|
|
|
|
|
|
int rc = ::bind(GetFD(), (sockaddr *)&sin, sizeof(sin));
|
|
|
|
|
2012-04-04 16:02:19 +02:00
|
|
|
if (rc < 0) {
|
|
|
|
SocketErrorEventArgs::Ptr ea = make_shared<SocketErrorEventArgs>();
|
|
|
|
#ifdef _WIN32
|
|
|
|
ea->Code = WSAGetLastError();
|
|
|
|
#else /* _WIN32 */
|
|
|
|
ea->Code = errno;
|
|
|
|
#endif /* _WIN32 */
|
|
|
|
ea->Message = FormatErrorCode(ea->Code);
|
|
|
|
|
|
|
|
OnError(ea);
|
|
|
|
|
2012-04-04 12:22:46 +02:00
|
|
|
Close();
|
2012-04-04 16:02:19 +02:00
|
|
|
}
|
2012-03-28 13:24:49 +02:00
|
|
|
}
|