Tagged Questions
0
votes
2answers
172 views
binding a client to a local port
I am trying to configure my TCP client to use a specific local port to connect to another TCP server.
I am using the code below but it doesnt' work.
Do you know what I am doing wrong and if this is ...
0
votes
0answers
398 views
Handling TCP client disconnect mid-send
Here's my situation:
I have a TCP server (written in C/C++) that can accept multiple clients. In a loop, the server sends a large chunk of data (an image) to each connected client. If one of my ...
0
votes
3answers
62 views
padding of responses in recv() api
In client side,it always get full response or there is any chance for getting half of response in one sort and remaining half in another sort(for example : depending on buffer that we defined for ...
1
vote
2answers
150 views
Reading/Writing is not working in my TCP code
I have a basic TCP client/server program.
I have a method in both the client and the server that reads and writes. It works perfectly the first time I run it, but when it runs again (it's in a ...
0
votes
2answers
209 views
Bus error after calling recv()/ How to recieve chunked compressed data
Hi I have a simple browser that sends a request to yahoo.com which the server responds telling me 200 Ok and that it will send me a gzip file using encoded-transfer:chunked. Thats fine and all but ...
2
votes
2answers
949 views
Ensuring no packet loss between TCP client and server
I am writing a Java TCP client which sends chunks of data to a C server. The client-server worked very well on my development PC. This code upon deployment on a hardware board showed packet loss. I ...
1
vote
2answers
859 views
TCP client socket, doesn't block on select()
The following code is a test program wriiten to understand the behaviour of select() call in a TCP client program.
What I observe is that the select is not blocking, instead the program is blocking ...
1
vote
5answers
228 views
How you pass path from client to server?
Hello i am trying to make a TCP client/server that i want these things.
The client will give the filename or the path of filename of a file.
The server will find that file and give these details:
...
