Tagged Questions

2
votes
1answer
22 views

C, Unix Domain Sockets, Ancillary data, and GCC; Using CMSG_DATA macro

How can I do this: *(int *)CMSG_DATA(hdr) = fd2pass; Without GCC raising this: error: dereferencing type-punned pointer will break strict-aliasing rules In a way compatible with these options: …
0
votes
2answers
22 views

In PHP - is there a way to know when fsockopen times out?

I was wondering if anyone knows a way to know when fsockopen times out? For instance if I set the timeout to 5 seconds, can I define a handler to do something if it hits that timeout connecting to my …
0
votes
1answer
19 views

tcp two sides trying to connect simultaneously

Consider the three way handshake of TCP. It is explained here. Now the article above mentions that two sides may try to connect simultaneously and the three way handshake works fine in this case. …
1
vote
1answer
21 views

Flash XML socket choking

I'm trying to work out some kinks in a multitouch application I've built. It uses flosc to communicate with a xml socket server that sends the multitouch events. This all works fine and dandy for …
2
votes
2answers
32 views

Perl: Checking for the Existence of socket options

This is a continuation of my previous question: In Perl, how can I check for the existence of Socket options without generating warnings? If I run the following code I get the result I expect: …
3
votes
2answers
50 views

In Perl, how can I check for the existence of Socket options without generating warnings?

I'm checking for the existence and default values of various socket options using Perl. #!/usr/bin/perl -w use strict; use Socket; if (defined(SO_BROADCAST)) { print("SO_BROADCAST defined\n"); } …
2
votes
2answers
20 views

Catching errors when logging with SocketHandler in Python

My web application runs on multpile apache instances and I am having multiprocess logging issues because of this. I am currently using a SocketHandler for logging to a daemon using SocketServer that …
4
votes
4answers
88 views

Why is writing a closed TCP socket worse than reading one?

When you read a closed TCP socket you get a regular error, i.e. it either returns 0 indicating EOF or -1 and an error code in errno which can be printed with perror. However, when you write a closed …
0
votes
1answer
38 views

DatagramSocket.receive() problems

I'm using the DatagramSocket class in Java to receive udp packets from a client written in C. Here is the code that receives (the server socket is already set up): byte[] inputByte = new byte[1]; …
2
votes
4answers
170 views

Whats wrong with this code

Hi, im just starting to learn about sockets and i have been given this code, and i have to make the port lookup logic work. But the problem is i keep getting this run time error and I dont know why? …
1
vote
3answers
51 views

[C - fdopen] Possible Bug - Associating a stream with a FD that already has one associated with it?

Howdy. I am in a networking class and we are creating our own "networking API" using the socket functions we have learned in class thus far. For the assignment the professor provided the already …
0
votes
1answer
49 views

best approach for multithreaded server on .net?

Hi , I want to develop a server which will listen on some specific ports to receive requests from device.While processing a request following steps are followed. Read data from socket stream(sent …
1
vote
1answer
46 views

How to listen to standard in and a socket on the same thread in C#?

I'm trying to make a networked console based application, but it needs to be able to listen to standard input and input from a socket at the same time. In C++ I would use the posix select() function …
5
votes
2answers
61 views

Perl - Save sockets in a hash and loop it from a thread

I am working on a mulithreaded TCP server. In the main thread i listen on a socket and create a new thread for new incomming connections. I want to save all incoming connections in a hash so that i …
0
votes
1answer
36 views

What does phrase “Reuse of local addresses is supported” mean?

In The Single UNIX Specification, Version 2 http://www.opengroup.org/onlinepubs/007908799/xns/syssocket.h.html claims that the param value of SO_REUSEADDR in setsockopt means: "Reuse of local …

1 2 3 4 5 83
15 30 50 per page