summaryrefslogtreecommitdiff
path: root/PracticalSocket.cpp
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2008-03-18 18:45:46 +0000
committerChristian Pointner <equinox@anytun.org>2008-03-18 18:45:46 +0000
commit877044dc40ee5482cc56444ba9bcd55e50a8745d (patch)
treeed57833caf1d94792fc0fd6d5f939e4de171139a /PracticalSocket.cpp
parentcreated eps files for black-wight logo (diff)
anyrtpproxy cleanup works now
Diffstat (limited to 'PracticalSocket.cpp')
-rw-r--r--PracticalSocket.cpp42
1 files changed, 42 insertions, 0 deletions
diff --git a/PracticalSocket.cpp b/PracticalSocket.cpp
index 5d39557..6f7b51c 100644
--- a/PracticalSocket.cpp
+++ b/PracticalSocket.cpp
@@ -62,6 +62,7 @@
#include <arpa/inet.h> // For inet_addr()
#include <unistd.h> // For close()
#include <netinet/in.h> // For sockaddr_in
+ #include <poll.h>
typedef void raw_type; // Type used for raw data on this platform
#endif
@@ -250,6 +251,24 @@ int CommunicatingSocket::recv(void *buffer, int bufferLen)
return rtn;
}
+int CommunicatingSocket::recvNonBlocking(void *buffer, int bufferLen, int timeOut)
+ throw(SocketException)
+{
+ struct pollfd pfd[1];
+ pfd[0].fd = sockDesc;
+ pfd[0].events = POLLIN;
+ int rtn = poll(pfd,1,timeOut);
+ if(rtn > 0) {
+ if ((rtn = ::recv(sockDesc, (raw_type *) buffer, bufferLen, 0)) < 0) {
+ throw SocketException("non blocking receive failed", true);
+ }
+ if(!rtn) {
+ throw SocketException("connection closed by peer", false);
+ }
+ }
+ return rtn;
+}
+
string CommunicatingSocket::getForeignAddress()
throw(SocketException) {
sockaddr_in addr;
@@ -399,6 +418,29 @@ int UDPSocket::recvFrom(void *buffer, int bufferLen, string &sourceAddress,
return rtn;
}
+int UDPSocket::recvFromNonBlocking(void *buffer, int bufferLen, string &sourceAddress,
+ unsigned short &sourcePort, int timeOut) throw(SocketException) {
+ sockaddr_in clntAddr;
+ socklen_t addrLen = sizeof(clntAddr);
+ struct pollfd pfd[1];
+ pfd[0].fd = sockDesc;
+ pfd[0].events = POLLIN;
+ int rtn = poll(pfd,1,timeOut);
+ if(rtn > 0) {
+ if ((rtn = recvfrom(sockDesc, (raw_type *) buffer, bufferLen, 0,
+ (sockaddr *) &clntAddr, (socklen_t *) &addrLen)) < 0) {
+ throw SocketException("Receive failed (recvfrom())", true);
+ }
+ if(!rtn) {
+ throw SocketException("connection closed by peer", false);
+ }
+ }
+ sourceAddress = inet_ntoa(clntAddr.sin_addr);
+ sourcePort = ntohs(clntAddr.sin_port);
+
+ return rtn;
+}
+
void UDPSocket::setMulticastTTL(unsigned char multicastTTL) throw(SocketException) {
if (setsockopt(sockDesc, IPPROTO_IP, IP_MULTICAST_TTL,
(raw_type *) &multicastTTL, sizeof(multicastTTL)) < 0) {