1
vote
4answers
35 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 …
0
votes
2answers
51 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
40 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, conne …
0
votes
2answers
41 views
Reading socket buffer using asyncore
I'm new to Python (I have been programming in Java for multiple years now though), and I am working on a simple socket-based networking application (just for fun). The idea is that …
0
votes
2answers
64 views
sockets in objective-c
I'm using gcc for compiling and linking Objective-C programs, and I'm wondering if there is socket library that is unified, portable, and/or cross-platform (like Python's socket mo …
0
votes
1answer
37 views
Ways to prevent broken pipe?
ClientAbortException: java.net.SocketException: Broken pipe
If I am wright, this happens when user aborts current operation or makes another request, before the last one is fini …
1
vote
2answers
67 views
mono, c#, sockets, performance
Hi!
I developed simple async server that listens to unix socket and sync client that send the some small piece of data. Time between moment when i send data from client to the mom …
0
votes
3answers
75 views
Need some explanation on compile errors:
The following compile errors is what I have:
/usr/lib/qt-3.3/include/qobject.h: In copy constructor Product::Product(const Product&):
/usr/lib/qt-3.3/include/qobject.h:211: er …
0
votes
2answers
29 views
Receiving image through winsocket
hey guys,
i have a proxy server running on my local machine used to cache images while surfing. I set up my browser with a proxy to 127.0.0.1, receive the HTTP requests, take the d …
2
votes
3answers
55 views
C++ HTTP / HTML Socket Question
I'm building an application which I'd like to have it connect to a website and parse some data off it. I'm wondering if anyone could provide me some raw example code.
I don't nece …
0
votes
2answers
54 views
Linux socket value
I have a client-server program, on the server side:
sockListen = socket(PF_INET, SOCK_STREAM, 0);
socketListen always seems to equal 3. Why? how about 0, 1 or 2? What is the val …
0
votes
2answers
44 views
What should be the maximum number of opened socket on a server?
For a web server, the socket connection are kept alive to save overhead. At which point the server should start to drop connection that doesn't have pending request and based on wh …
0
votes
4answers
70 views
Java GUI amd FPGA
Hi,
I study on a robot simulator that written on Java environment.But sonar scan simulations and computational burden of some driven algorithms on robot drop my simulator's perfor …
0
votes
1answer
14 views
stream_socket_client error in php
Warning: stream_socket_client() [function.stream-socket-client]: unable to connect to ssl://gateway.sandbox.push.apple.com:2195 (Connection timed out) in /home/biranchi/public_html …
0
votes
5answers
176 views
Sending an int over TCP (C-programming)
Hi!
I have a server and a client program (both running on the same machine). The client is able to send a struct to the server with members such as "ID", "size" etc. Then I would …
