1
vote
2answers
38 views
Where can I find benchmarks on different networking architectures?
Where can I find benchmarks on different networking architectures?
I am playing with sockets / threads / forks and I'd like to know what the best is. I was thinking there has got to be a place where …
1
vote
3answers
43 views
Multiple TCP/IP servers and sharing the same “well known port” … somehow?
I apologize for the weird question wording... here's the design problem:
I am developing a server (on Linux using C++, FWIW) that provides a service to many instances of a client application running …
0
votes
1answer
33 views
Returning data from asynchronous socket requests correctly?
Hi all,
This is my first foray into asynchronous socket development, so I'm open to any and all suggestions - thought I do have a specific q. My objective is to make a series of httpRequests using …
0
votes
2answers
50 views
Java File Transfer getting stuck halfway
I am trying to send a file (an image sent as a byte array) with the client and then the server should receive said byte array to make further use of it. However when I click on the "send" to send the …
1
vote
1answer
27 views
Java Socket TCP Maximum Segment Size
Hi
Is there a possibility to read out the TCP "MSS" option header of a Connections SYN packet or is this buried too deep in layers of layers of layers ?
Thanks
8
votes
9answers
513 views
Why does the Flash Player throw a sandbox error in this case?
I get a Flex 3 sandbox error #2048 after connecting to a Socket on a Java (1.5) server. The server code is all mine, i.e. not running under Apache. Flash Player 10.0 r32.
The sequence is as …
0
votes
1answer
17 views
C# DatacontractSerializer over Sockets multiple root elements
I am writing a Sivlerlight Chat application using Sockets and the DataContractSerializer.
I have a class hierarchy of serializable objects with the definitions shared between the Silverlight Client …
0
votes
4answers
78 views
How to copy a char[] in c into my struct
I am trying to send my struct over a UDP socket.
struct Packet {
int seqnum;
char data[BUFFERSIZE];
};
So on the sender I have
bytes = sizeof(packet);
char sending[bytes];
bzero(sending, …
5
votes
9answers
3k views
Detecting TCP Client Disconnect
If I'm running a simple server and have accept()ed a connection from a client, what is the best way to tell when the client has disconnected? Normally, the client in this case I supposed to send a …
0
votes
2answers
50 views
How do I compare two timestamps in C?
I'm writing a socket program that maintains FIFO queues for two input sockets. When deciding which queue to service, the program pulls the most recent time-stamp from each queue.
I need a reliable …
1
vote
3answers
26 views
Using the netinet functions on iPhone causes the UI to not refresh
I'm including the netinet headers and doing some raw socket programming on the iPhone, and have found when making these calls, the UI won't refresh until I'm finished- any response I get and write to …
1
vote
4answers
65 views
sending formatted messages across TCP connection
I have an existing C program which prints a number of messages to standard error using:
fprintf(stderr, ...
I would like to modify this program so that these messages are also sent out over a TCP …
0
votes
2answers
66 views
Create binary data using Ruby ??
i was palying with the ruby sockets, so i ended up trying to put an IP packet togather, then i took an ip packet and try to make a new one just like it.
now my problem is: if the packet is: 45 00 00 …
0
votes
2answers
28 views
accept/epoll problem
I have this code that uses epoll and it has a problem. When I run it, it gives output:
Server-socket() is OK...
Server-bind() is OK...
3
4
accept: Invalid argument
I'm running it on ubuntu linux, …
1
vote
2answers
40 views
Any design pattern that will be helpful in implementing asynchronous communication using sockets?
Here is a brief description of what I want to accomplish.
I am developing a peer to peer application using sockets. I want all my communication to be asynchronous. When ever a peer will ask another …
