0
votes
3answers
143 views
C++ STL based socket library
I need a C++ STL (iostream, string, etc.) based tcp socket client / server. Does anybody know such library?
1
vote
1answer
20 views
Signed Unsigned Applets / Java Web Start, Socket Connections?
Hello There,
I have been developing a test framework for a particular client/server product (COTS) that exposes XML requests & responses via a raw ip socket.
I have been able to develop my …
0
votes
1answer
19 views
Are Socket’s events queued in Flash?
I'm trying to implement a binary protocol between a flash application and a Custom Java Server using TCP/IP sockets, the protocol's messages are of variable length, so my idea is to add a field …
0
votes
2answers
56 views
.Net C# TcpClient / Socket HTTP Client Performance / Efficiency
Hi All,
I'm writing an HTTP client using the .Net TcpClient / Sockets.
So far, the client handles both Content-Length and chunked responses by iterating through the NetworkStream response (after …
1
vote
2answers
42 views
Set timeout for winsock recvfrom
I'm trying to set up a blocking socket to timeout after 16 ms of trying to recvfrom() on a port. Platform is Windows. I've looked at tons of examples online and it seems really simple I just can't …
0
votes
2answers
53 views
How to get IP address from sockaddr
I want to try and get the ip address of a client after calling accept. This is what I have so far, but I just end up getting some long number that is clearly not an ip address. What could be wrong? …
2
votes
3answers
66 views
Intercept traffic above the transport layer
Firstly, I'm relatively new to network programming. I want to intercept and delay HTTP traffic before it gets to the server application. I've delved into libnetfilter_queue which gives me all the …
0
votes
1answer
16 views
NSStream reading\writing outside the delegate method handleEvent:eventCode
Hi, in an iPhone app, I have a socket connection through wifi, and I need to read from inputStream and write to outputStream. The problem is that stream management is event-driven, and I have to wait …
1
vote
3answers
28 views
Receiving a response through UDP
Hello. I have seen applications send a packet through UDP to an IP on some port and receiving a response. Which port does the response go to? (Btw, how can the router know that the response is for my …
0
votes
4answers
100 views
C# socket vs c++ Socket, which is better?
I have a server-side project which must be developed on .Net platform, but I doubt about the c# socket performance, some guys told me that C# application always eat a lot of memory, especially when …
0
votes
0answers
19 views
ejabberd ip address
Does anyone know if there's a direct way to map an IP address to a user logged into ejabberd? I found an indirect way by modifying ejabberd_receiver.erl and calling inet:peername(Socket) from here: …
1
vote
4answers
46 views
Zero Window when sending files through posix sockets
Hi
I have a problem - when I'm trying to send huge amounts of data through posix sockets ( doesn't matter if it's files or some data ) at some point I don't receive what I expect - I used wireshark …
0
votes
1answer
17 views
NNTP & Socket - How to interrupt?
Hi. I'm sending a message to a NNTP server in order to fetch an article's body. I don't want to wait for the answer to complete, cause I only need the first 3 lines from the body. How can I interrupt …
0
votes
2answers
60 views
Socket available data for read
I need fast method for check socket has available data for read.
I use select(), but it is not fast.
Is faster method exists?
1
vote
1answer
59 views
Socket: Client was disconnected or not?
I am creating socket server. But I do not know, How I can know client disconnected or not?
I am creating server under Windows and using berkeley sockets function (read, send, connect....).
Preferably …
