Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing a peer-to-peer program that requires the network be fully connected. However, when I test this locally and bring up about 20 nodes, some nodes successfully create a socket to other nodes, but when writing immediately after a broken pipe error occurs. This only happens when I start all nodes one right after the other; if I sleep about a second I don't see this problem.

I have logic to deal with two nodes that both open sockets to eachother, which may be buggy, though I do see it operating properly with less nodes. Is this a limitation of testing locally?

share|improve this question
A peer-to-peer program where the connections need to form a complete graph? I hope you intend this to be a tinker toy – goncalopp Nov 22 '12 at 14:44
Also, when you create "two nodes that both open sockets to eachother", are you making sure you're opening the listening sockets before any one node connects? As you mention, you should sleep for a moment until all the listening sockets are open – goncalopp Nov 22 '12 at 14:47
I'm not, but the socket is being created, it's just that a broken pipe exception is thrown when writing to it. – user490895 Nov 22 '12 at 14:56
Indeed, if the sockets were not yet open by the OS, you would get a "connection refused" error. But if you're saying it works when you sleep, it sound's like not everything is yet setup. Do you sleep between opening each listening socket, or before the writes? – goncalopp Nov 22 '12 at 15:09
I'm sleeping between starting each instance, so probably between opening the sockets. – user490895 Nov 22 '12 at 15:41
show 1 more comment

1 Answer

'Broken pipe' means you have written to a connection that has already been closed by the other end. So, you must have done that somehow.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.