0
votes
1answer
13 views
APN Error in Server Script (php)
Hi All,
I am getting this error in my php script , while sending payload data.
Warning: stream_socket_client() [function.stream-socket-client]:
Unable to set private key file `/A …
18
votes
8answers
2k views
Why is it impossible, without attempting I/O, to detect that TCP socket was gracefully closed by peer?
As a follow up to a recent question (http://stackoverflow.com/questions/151590/java-how-do-detect-a-remote-side-socket-close), I wonder why it is impossible in Java, without attemp …
0
votes
2answers
26 views
C# .. Asynchronous Sockets .. where is the State Object Stored?
Hi all,
A simple question really, but one where I cannot find any anwsers too.
When I execute an Asynchronous Socket operation, such as :
socket.BeginSend
(
new byte[]{6}, …
0
votes
2answers
30 views
Porting linux socket application to windows usins MsDev
Is there openly available headers which can be used to compile linux socket application (using socket/udp/ip headers). they should define structures like sa_family_t,in_port_t
Ma …
7
votes
4answers
221 views
Is there a way to get non-locking stream insertion/extraction on basic_iostream in Windows?
I'm a C++ developer who has primarily programmed on Solaris and Linux until recently, when I was forced to create an application targeted to Windows.
I've been using a communicati …
4
votes
2answers
174 views
Debugging in XCode as root
In my program I need to create sockets and bind them to listen HTTP port (80). The program works fine when I launch it from command line with sudo, escalating permissions to root. …
0
votes
4answers
37 views
General sockets UDP programming question
I have an FPGA device with which my code needs to talk. The protocol is as follows:
I send a single non-zero byte (UDP) to turn on a feature. The FPGA board then begins spewing …
0
votes
1answer
19 views
Reopen same socket for reuse C++
Hi
I am having an application which listens on a particular RPC Port number say 10001 for connection with another device(hardware) using socket programming.
Meanwhile the hardwa …
2
votes
1answer
70 views
How can I tell if there is data in an input filehandle’s buffer in Perl?
I'm working on a program that uses an epoll-based event loop to handle multiple simultaneous socket connections. When the app detects that there is data to be read, it calls a pro …
0
votes
1answer
19 views
Is there a way to manipulate udp packets after an application sends it to a socket?
In other words, can I intercept those packets (possibly at the stack level) using a separate application, manipulate them and then send them to the destination the original applica …
0
votes
2answers
63 views
Threading and Sockets
I have the following:
ThreadStart startThread =
delegate
{
mySocket.StartListen();
};
mySocket is now looping on a Listen() when I:
new Thread(st …
0
votes
4answers
81 views
Should Sockets be secured
I am working on an update function for a pet project of mine, and was wondering if I need to spend the time to make sure my connections are secure?
Basically the client sends the …
0
votes
3answers
81 views
How to check if port is available
Is there an API function on Linux (kernel 2.6.20) which can be used to check if a given TCP/IP port is used - bound and/or connected ?
Is bind() the only solution (binding to the …
0
votes
4answers
39 views
Maintaining many socket connections with a single thread
Many tutorials on socket communication I see seem to use 1 thread per socket. But on a server used for online gaming, you might have 10k concurrent users - 10k threads isn't probab …
2
votes
2answers
56 views
Sandbox violation on second socket send
Hi,
I have a Flex client using a Flash binary (TCP) socket for communication with a Java server. I have a localhost (Apache) server providing a crossdomain.xml file which is wi …
