active questions tagged sockets - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T09:28:53Z http://stackoverflow.com/feeds/tag/sockets http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1905230/tcp-socket-error-only-one-usage-of-each-socket-address-protocol-network-address 0 TCP Socket Error: Only one usage of each socket address (protocol/network address/port) is normally permitted Mohsan 2009-12-15T04:50:56Z 2009-12-15T05:00:21Z <p>Hi.</p> <p>i am developing a small TCP Client/Server lib.</p> <p>i am facing this problem when i create a client and connect it to server. it gives me this exception</p> <p><strong>Only one usage of each socket address (protocol/network address/port) is normally permitted</strong></p> <p>my code is.</p> <pre><code> public TCPClient(string remoteIPAddress, int port) { this.remoteIPAddress = IPAddress.Parse(remoteIPAddress); this.port = port; IPEndPoint remoteEndPoint = new IPEndPoint(this.remoteIPAddress, this.port); tcpClient = new TcpClient(remoteEndPoint); } </code></pre> <p>and here is TCPServer</p> <pre><code> public TCPServer(int listeningPort) { this.listeningPort = listeningPort; tcpListenter = new TcpListener(this.listeningPort); workers = new List&lt;TCPServerWorker&gt;(); this.keepRunning = false; } </code></pre> <p>any help that why i am getting this exception</p> http://stackoverflow.com/questions/1904160/c-getting-the-ip-address-of-a-remote-socket-endpoint 0 [C#] Getting the IP Address of a Remote Socket Endpoint bobber205 2009-12-14T23:06:45Z 2009-12-15T04:04:42Z <p>How do I determine the remote IP Address of a connected socket?</p> <p>I have a RemoteEndPoint object I can access and well as its AddressFamily member.</p> <p>How do I utilize these to find the ip address?</p> <p>Thanks!</p> <p>Currently trying</p> <pre><code>IPAddress.Parse( testSocket.Address.Address.ToString() ).ToString(); </code></pre> <p>and getting 1.0.0.127 instead of 127.0.0.1 for localhost end points. Is this normal?</p> http://stackoverflow.com/questions/1900585/unexpected-byte-sequence-returned-from-iis-5-1-ftp-server 1 Unexpected byte sequence returned from IIS 5.1 FTP server Dag 2009-12-14T12:13:14Z 2009-12-14T12:13:14Z <p>Back when .NET Framework 1.0 was launched, there were no good FTP client implementations available for .NET so I wrote my own implementation using System.Net.Socket. Recently I had to make some changes to it, and while debugging I noticed garbled output from the IIS 5.1 FTP server I'm testing against (WinXP SP 2) when closing the connection.</p> <p>The communication goes like this:</p> <pre><code>Send: QUIT&lt;CRLF&gt; Receive: 221&lt;CRLF&gt;&lt;NUL&gt;?&lt;ETX&gt;&lt;NUL&gt; (socket closed) </code></pre> <p>The FTP command channel handler is line-oriented using CRLF as terminator, and upon receiving the four bytes after the first CRLF it waits for a second CRLF causing a timeout error. The entire sequence is returned by a single socket read operation, and I've verified that the byte count returned from the socket is correct.</p> <p>This sequence of bytes has been consistent against this server and I was wondering if this is expected/ can be prevented, or if I should simply "quick fix" it adding it to my list of "MS FTP Server quirks".</p> http://stackoverflow.com/questions/1895832/detecting-client-tcp-disconnection-while-using-networkstream-class 0 Detecting client TCP disconnection while using NetworkStream class Blair Holloway 2009-12-13T07:22:50Z 2009-12-14T11:15:05Z <p>A friend of mine came to me with a problem: when using the NetworkStream class on the server end of the connection, if the client disconnects, NetworkStream fails to detect it.</p> <p>Stripped down, his C# code looked like this:</p> <pre><code>List&lt;TcpClient&gt; connections = new List&lt;TcpClient&gt;(); TcpListener listener = new TcpListener(7777); listener.Start(); while(true) { if (listener.Pending()) { connections.Add(listener.AcceptTcpClient()); } TcpClient deadClient = null; foreach (TcpClient client in connections) { if (!client.Connected) { deadClient = client; break; } NetworkStream ns = client.GetStream(); if (ns.DataAvailable) { BinaryFormatter bf = new BinaryFormatter(); object o = bf.Deserialize(ns); ReceiveMyObject(o); } } if (deadClient != null) { deadClient.Close(); connections.Remove(deadClient); } Thread.Sleep(0); } </code></pre> <p>The code works, in that clients can successfully connect and the server can read data sent to it. However, if the remote client calls tcpClient.Close(), the server does not detect the disconnection - client.Connected remains true, and ns.DataAvailable is false.</p> <p>A search of Stack Overflow provided <em>an</em> answer - since Socket.Receive is not being called, the socket is not detecting the disconnection. Fair enough. We can work around that:</p> <pre><code>foreach (TcpClient client in connections) { client.ReceiveTimeout = 0; if (client.Client.Poll(0, SelectMode.SelectRead)) { int bytesPeeked = 0; byte[] buffer = new byte[1]; bytesPeeked = client.Client.Receive(buffer, SocketFlags.Peek); if (bytesPeeked == 0) { deadClient = client; break; } else { NetworkStream ns = client.GetStream(); if (ns.DataAvailable) { BinaryFormatter bf = new BinaryFormatter(); object o = bf.Deserialize(ns); ReceiveMyObject(o); } } } } </code></pre> <p>(I have left out exception handling code for brevity.)</p> <p>This code works, however, I would not call this solution "elegant". The other elegant solution to the problem I am aware of is to spawn a thread per TcpClient, and allow the BinaryFormatter.Deserialize (née NetworkStream.Read) call to block, which would detect the disconnection correctly. Though, this does have the overhead of creating and maintaining a thread per client.</p> <p>I get the feeling that I'm missing some secret, awesome answer that would retain the clarity of the original code, but avoid the use of additional threads to perform asynchronous reads. Though, perhaps, the NetworkStream class was never designed for this sort of usage. Can anyone shed some light?</p> <p><strong>Update:</strong> Just want to clarify that I'm interested to see if the .NET framework has a solution that covers this use of NetworkStream (i.e. polling <em>and</em> avoiding blocking) - obviously it can be done; the NetworkStream could easily be wrapped in a supporting class that provides the functionality. It just seemed strange that the framework essentially requires you to use threads to avoid blocking on NetworkStream.Read, or, to peek on the socket itself to check for disconnections - almost like it's a bug. Or a potential lack of a feature. ;)</p> http://stackoverflow.com/questions/204178/first-chance-exception-at-addr-in-myapp-0x000006ba-the-rpc-server-is-unavai 0 First-chance exception at <addr> in <myapp>: 0x000006BA: The RPC server is unavailable zakker 2008-10-15T09:43:13Z 2009-12-14T10:31:27Z <p>What does it mean: "First-chance exception at in : 0x000006BA: The RPC server is unavailable" ?</p> <p>this debug message appears in Debug output of visual studio debugger when I using socket connection, but I don't know what operation initiates this message...</p> http://stackoverflow.com/questions/1897939/how-do-you-you-run-a-twisted-application-via-python-instead-of-via-twisted 2 How do you you run a Twisted application via Python (instead of via Twisted)? Mike Trpcic 2009-12-13T22:03:32Z 2009-12-14T04:22:36Z <p>I am working my way through learning Twisted, and have stumbled across something I'm not sure I'm terribly fond of - the "Twisted Command Prompt". I am fiddling around with Twisted on my Windows machine, and tried running the "Chat" example:</p> <pre><code>from twisted.protocols import basic class MyChat(basic.LineReceiver): def connectionMade(self): print "Got new client!" self.factory.clients.append(self) def connectionLost(self, reason): print "Lost a client!" self.factory.clients.remove(self) def lineReceived(self, line): print "received", repr(line) for c in self.factory.clients: c.message(line) def message(self, message): self.transport.write(message + '\n') from twisted.internet import protocol from twisted.application import service, internet factory = protocol.ServerFactory() factory.protocol = MyChat factory.clients = [] application = service.Application("chatserver") internet.TCPServer(1025, factory).setServiceParent(application) </code></pre> <p>However, to run this application as a Twisted server, I have to run it via the "Twisted Command Prompt", with the command:</p> <pre><code>twistd -y chatserver.py </code></pre> <p>Is there any way to change the code (set Twisted configuration settings, etc) so that I can simply run it via:</p> <pre><code>python chatserver.py </code></pre> <p>I've Googled, but the search terms seem to be too vague to return any meaningful responses.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1898411/twisted-ignoring-data-sent-from-mud-clients 0 Twisted ignoring data sent from MUD Clients? Mike Trpcic 2009-12-14T00:49:12Z 2009-12-14T01:37:05Z <p>I have the following code (almost an exact copy of the Chat server example listed <a href="http://twistedmatrix.com/documents/current/core/examples/#auto1" rel="nofollow">here</a>:</p> <p>import twisted.scripts.twistd from twisted.protocols import basic from twisted.internet import protocol, reactor from twisted.application import service, internet</p> <pre><code>class MyChat(basic.LineReceiver): def connectionMade(self): print "Got new client!" self.factory.clients.append(self) def connectionLost(self, reason): print "Lost a client!" self.factory.clients.remove(self) def lineReceived(self, line): print "received", repr(line) for c in self.factory.clients: c.message(line) def message(self, message): self.transport.write(message + '\n') factory = protocol.ServerFactory() factory.protocol = MyChat factory.clients = [] if __name__ == "__main__": print "Building reactor...." reactor.listenTCP(50000, factory) print "Running ractor...." reactor.run() else: application = service.Application("chatserver") internet.TCPServer(50000, factory).setServiceParent(application) </code></pre> <p>The server runs without error, and if I connect to it via Telnet, I can send data and the server prints to the console and relays it to all clients (as is expected). However, if I connect to it via a different tool (a MUD client), it never gets the data.</p> <p>I have ensured that the client is sending the data (Traced the packets with Wireshark, and they're going across the wire), but the server either never receives it, or is choosing to ignore it for some reason.</p> <p>I have tried this with two MUD clients, <a href="http://valiant8086.x-sight-interactive.net/games/muds/gmud/index.html" rel="nofollow">gmud</a>, and <a href="http://www.gryphon-clan.ru/jmc/en/download" rel="nofollow">JMC</a>. If it is important, I am running Windows 7 x64.</p> <p>Does anyone have any idea why this could be happening?</p> <p>Thanks,</p> <p>Mike</p> <p><strong>EDIT:</strong></p> <p>Thanks to the hints provided by <a href="http://stackoverflow.com/users/54091/maiku-mori">Maiku Mori</a>, I tried adding another method that was specified in the <a href="http://twistedmatrix.com/documents/8.2.0/api/twisted.protocols.basic.LineReceiver.html#dataReceived" rel="nofollow">Twisted API Docs</a>, dataReceived. Once this was added, the MUD clients worked perfectly, but Telnet is now sending every character as it's own set of data, instead of waiting for the user to press Enter.</p> <p>Here's a snipped of the new code:</p> <pre><code> def dataReceived(self, data): print "Dreceived", repr(data) for c in self.factory.clients: c.message(data) # def lineReceived(self, line): # print "received", repr(line) # for c in self.factory.clients: # c.message(line) </code></pre> <p>Has anyone experiences this before, and if so, how do you get around it? Ideally, I would like Telnet <strong>and</strong> MUD clients to work with this application.</p> <p>Thanks again.</p> http://stackoverflow.com/questions/1890238/passing-structures-using-sento 1 Passing structures using sento() Ankit 2009-12-11T19:11:07Z 2009-12-13T17:36:26Z <p>How do I pass following message format from a UDP client to a UDP server?</p> <pre><code>----------------------------- |Ver|p|fff| length| checksum| ---------------------------- | Customer id | ----------------------------- | Amount | ----------------------------- |other | ----------------------------- </code></pre> <p>how do I write raw data from a structure onto the wire?</p> http://stackoverflow.com/questions/1891897/can-the-send-function-block 0 can the send function block Jon Korowozik 2009-12-12T01:31:35Z 2009-12-12T01:42:09Z <p>I'm writing a chat program and for the server, when I send data can the send() function take a long time to send out the data?</p> <p>Here is my problem: I'm using linux 2.6 with epoll, server in single thread If send() blocks, then this means all other activity on the server will stop. Like if there is a very slow client that does not send ACK responses for a long time to a tcp packet, will the send function just move on right away, or will it wait a long time for the client. The thing I don't want is for a single/few slow clients to cause delays in the chat server.</p> <p>What I want is for send() to nonblock and to return very quickly. If it doesn't send all the data, it will simply return the amount sent and I will remove that from the buffer and keep sending next time serviced until all data sent. Basically I don't want send to block for a long time on a slow or unresponsive client.</p> http://stackoverflow.com/questions/800734/whats-behind-the-casyncsocket-assertion-problems-and-improper-argument-errors 2 What's behind the CAsyncSocket assertion problems and "improper argument" errors in my MFC sockets code? tim 2009-04-29T03:12:55Z 2009-12-11T23:26:53Z <p>I was asked to look at some code for a friend. (I rightly hesitated due to the MFC and lots of bad code, but he won...)</p> <p>This is a dialog box based application that uses a <code>CAsyncSocket</code>. </p> <p>The problem manifests in some nonstop debugbreaks and other similar things - there are also problem with an MFC <code>ENSURE()</code> macro - checking the socket for nullness. All of the issues happen deep in MFC. </p> <p>Some googling showed up possible resource leaks if one uses themes in Vista/XP, but I don't think that is the problem here.</p> <p>The code is pretty poor based on my couple hours of debugging, but basically it is doing the following:</p> <p>(When connection is established there is no problem - it is only the case when no connection)</p> <ul> <li>Calls Connect(server, socket) (on the derived <code>CAsyncSocket</code> object)</li> <li>In the <code>OnConnect()</code> we are notified that connection did not work/not connected.</li> <li>Inside a window timer for the main dialog/app there is a timer. When the timer event/handler is called we check if connected. </li> <li>If we have detected that we are not connected (the <code>OnConnect()</code> was not good) then we call <code>CAsyncSocket::Close()</code>, then call <code>CAsyncSocket::Create()</code> (with no params) then call <code>CAsyncSocket::Connect(server, port)</code> </li> </ul> <p>Note that the initial call to <code>Connect()</code> had no preceding call to <code>Create()</code>. </p> <h3>My first real question:</h3> <ul> <li>What is the difference between the two and why is the <code>Create()</code> needed? (if I remove that then it no longer crashes, but I also don't connect when I re-establish connectivity)</li> </ul> <h3>The general question:</h3> <ul> <li>What exactly is wrong with the design of the code above?</li> <li>How should this work in general?</li> </ul> <h3>EDIT:</h3> <p>I fixed the code so that all the paths go through calling <code>Create()</code> then <code>Connect()</code>.</p> <p>I still have a problem with an assert in <code>CAsyncSocket::DoCallBack()</code> - the last line of the code below is asserting:</p> <pre><code>void PASCAL CAsyncSocket::DoCallBack(WPARAM wParam, LPARAM lParam) { if (wParam == 0 &amp;&amp; lParam == 0) return; // Has the socket be closed - lookup in dead handle list CAsyncSocket* pSocket = CAsyncSocket::LookupHandle((SOCKET)wParam, TRUE); // If yes ignore message if (pSocket != NULL) return; pSocket = CAsyncSocket::LookupHandle((SOCKET)wParam, FALSE); if (pSocket == NULL) { // Must be in the middle of an Accept call pSocket = CAsyncSocket::LookupHandle(INVALID_SOCKET, FALSE); ENSURE(pSocket != NULL); </code></pre> <p>If I step through that then I get the message box: "Encountered an improper argument"</p> <p>I think (but am not sure) that MFC is trying to call back the socket AFTER I have closed it. It is in a callback method (<code>DoCallback()</code>) but I already called <code>Close()</code> on the socket.</p> <p>So it does look like an MFC problem, unless I am supposed to unsubscribe first.</p> http://stackoverflow.com/questions/1857789/how-to-copy-a-char-in-c-into-my-struct 0 How to copy a char[] in c into my struct Bernie Perez 2009-12-07T04:23:15Z 2009-12-11T22:36:35Z <p>I am trying to send my struct over a UDP socket.</p> <p>struct Packet { int seqnum; char data[BUFFERSIZE]; };</p> <p>So on the sender I have</p> <pre><code>bytes = sizeof(packet); char sending[bytes]; bzero(sending, bytes); memcpy((void *) sending, (void *) &amp;packet, sizeof(bytes)); bytes = sendto(sockfd, sending, sizeof(sending), 0, (struct sockaddr *) &amp;client, clientSize); </code></pre> <p>So I'm hoping that copies my struct into the Char[].</p> <p>On the receiver I have</p> <pre><code>int bytes; bytes = sizeof(struct Packet); char recv[bytes]; bytes = recvfrom(sockfd, recv, bytes, 0, (struct sockaddr *) &amp;client, &amp;clientSize); memcpy((void *) currentpkt, (void *) recv, bytes); </code></pre> <p>However on the receiver with <strong>memcpy((void *) currentpkt, (void *) recv, bytes);</strong> I get an error:</p> <blockquote> <p>error: cannot convert to a pointer type</p> </blockquote> <p>What am I doing wrong? Is there a better way to send my struct over a UDP socket?</p> <p><strong><em></strong> UPDATE <strong></em></strong></p> <p>Thanks for the answers everyone. In the end I missed the '&amp;' but my code now looks like this.</p> <p>Sender:</p> <pre><code>void udt_send(struct Packet packet) { int bytes; bytes = sendto(sockfd, (char *) &amp;packet, sizeof(packet), 0, (struct sockaddr *) &amp;client, clientSize); } </code></pre> <p>Receiver:</p> <pre><code>bytes = recvfrom(sockfd, (char *) &amp;currentpkt, bytes, 0, (struct sockaddr *) &amp;client, &amp;clientSize); </code></pre> <p>In C its nice that we can just cast it to a char and send the bytes over.</p> http://stackoverflow.com/questions/1885605/qabstractsocketunknownsocketerror 0 QAbstractSocket::UnknownSocketError Anton 2009-12-11T03:24:11Z 2009-12-11T20:26:22Z <p>What could be cause of <code>QAbstractSocket::UnknownSocketError</code> when using <code>QTcpSocket</code>?</p> <p><hr></p> <p><strong>CODE</strong></p> <p>I'm getting this error code with the following code:</p> <pre><code>this-&gt;connect(socket, SIGNAL(socketError(QAbstractSocket::SocketError)), SLOT(handleSocketError(QAbstractSocket::SocketError))); ... void MyClass::handleSocketError(QAbstractSocket::SocketError error) { qDebug() &lt;&lt; error; } </code></pre> <p><hr></p> <p><strong>MORE INFO</strong></p> <p>The QTcpSocket is trying to connect to some remote host. And it fails with mentioned error code.</p> http://stackoverflow.com/questions/41602/how-to-forcibly-close-a-socket-in-timewait 3 How to forcibly close a socket in TIME_WAIT? Rehan Khwaja 2008-09-03T12:57:26Z 2009-12-11T17:36:00Z <p>I run a particular program on linux which sometimes crashes. If you open it quickly after that, it listens on socket 49201 instead of 49200 as it did the first time. netstat reveals that 49200 is in a TIME_WAIT state.</p> <p>Is there a program you can run to immediately force that socket move out of the TIME_WAIT state?</p> http://stackoverflow.com/questions/62929/java-net-socketexception-connection-reset 1 java.net.SocketException: Connection reset Darryl 2008-09-15T13:36:42Z 2009-12-11T10:19:23Z <p>I am getting the following error trying to read from a socket. I'm doing a readInt() on that InputStream, and I am getting this error. Perusing the documentation this suggests that the client part of the connection closed the connection. In this scenario, I am the server.</p> <p>I have access to the client log files and it is not closing the connection, and in fact its log files suggest I am closing the connection. So does anybody have an idea why this is happening? What else to check for? Does this arise when there are local resources that are perhaps reaching thresholds?</p> <p>Many thanks, Darryl</p> http://stackoverflow.com/questions/1878149/socketexception-when-connecting-to-server 0 SocketException when connecting to server mk 2009-12-10T01:38:01Z 2009-12-11T09:09:00Z <p>I am running both client and server on the same machine. Does any 1 know the error stated above?</p> <p><strong>server</strong></p> <p>using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Threading; using System.Net.Sockets; using System.IO; using System.Net;</p> <p>namespace Server { public partial class Server : Form {</p> <pre><code> private Socket connection; private Thread readThread; private NetworkStream socketStream; private BinaryWriter writer; private BinaryReader reader; //default constructor public Server() { InitializeComponent(); //create a new thread from server readThread = new Thread(new ThreadStart(RunServer)); readThread.Start(); } protected void Server_Closing(object sender, CancelEventArgs e) { System.Environment.Exit(System.Environment.ExitCode); } //sends the text typed at the server to the client protected void inputText_KeyDown(object sender, KeyEventArgs e) { // send the text to client try { if (e.KeyCode == Keys.Enter &amp;&amp; connection != null) { writer.Write("Server&gt;&gt;&gt; " + inputText.Text); displayText.Text += "\r\nSERVER&gt;&gt;&gt; " + inputText.Text; //if user at server enter terminate //disconnect the connection to the client if (inputText.Text == "TERMINATE") connection.Close(); inputText.Clear(); } } catch (SocketException) { displayText.Text += "\nError writing object"; } }//inputTextBox_KeyDown // allow client to connect &amp; display the text it sends public void RunServer() { TcpListener listener; int counter = 1; //wait for a client connection &amp; display the text client sends try { //step 1: create TcpListener IPAddress ipAddress = Dns.Resolve("localhost").AddressList[0]; TcpListener tcplistener = new TcpListener(ipAddress, 9000); //step 2: TcpListener waits for connection request tcplistener.Start(); //step 3: establish connection upon client request while (true) { displayText.Text = "waiting for connection\r\n"; // accept incoming connection connection = tcplistener.AcceptSocket(); //create NetworkStream object associated with socket socketStream = new NetworkStream(connection); //create objects for transferring data across stream writer = new BinaryWriter(socketStream); reader = new BinaryReader(socketStream); displayText.Text += "Connection " + counter + " received.\r\n "; //inform client connection was successful writer.Write("SERVER&gt;&gt;&gt; Connection successful"); inputText.ReadOnly = false; string theReply = ""; // step 4: read string data sent from client do { try { //read the string sent to the server theReply = reader.ReadString(); // display the message displayText.Text += "\r\n" + theReply; } // handle the exception if error reading data catch (Exception) { break; } } while (theReply != "CLIENT&gt;&gt;&gt; TERMINATE" &amp;&amp; connection.Connected); displayText.Text += "\r\nUser terminated connection"; // step 5: close connection inputText.ReadOnly = true; writer.Close(); reader.Close(); socketStream.Close(); connection.Close(); ++counter; } } //end try catch (Exception error) { MessageBox.Show(error.ToString()); } } }// end method runserver </code></pre> <p>}// end class server</p> <p><strong>Client</strong></p> <p>using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Threading; using System.Net.Sockets; using System.IO; using System.Net;</p> <p>namespace Client { public partial class Client : Form { private NetworkStream output; private BinaryWriter writer; private BinaryReader reader;</p> <pre><code> private string message = ""; private Thread readThread; //default constructor public Client() { InitializeComponent(); readThread = new Thread(new ThreadStart(RunClient)); readThread.Start(); } protected void Client_Closing( object sender, CancelEventArgs e) { System.Environment.Exit(System.Environment.ExitCode); } //sends the text user typed to server protected void inputText_KeyDown( object sender, KeyEventArgs e) { try { if (e.KeyCode == Keys.Enter) { writer.Write("CLIENT&gt;&gt;&gt; " + inputText.Text); displayText.Text += "\r\nCLIENT&gt;&gt;&gt; " + inputText.Text; inputText.Clear(); } } catch (SocketException ioe) { displayText.Text += "\nError writing object"; } }//end method inputText_KeyDown //connect to server &amp; display server-generated text public void RunClient() { TcpClient client; //instantiate TcpClient for sending data to server try { displayText.Text += "Attempting connection\r\n"; //step1: create TcpClient for sending data to server client = new TcpClient(); client.Connect("localhost", 9000); //step2: get NetworkStream associated with TcpClient output = client.GetStream(); //create objects for writing &amp; reading across stream writer = new BinaryWriter(output); reader = new BinaryReader(output); displayText.Text += "\r\nGot I/O streams\r\n"; inputText.ReadOnly = false; //loop until server terminate do { //step3: processing phase try { //read from server message = reader.ReadString(); displayText.Text += "\r\n" + message; } //handle exception if error in reading server data catch (Exception) { System.Environment.Exit(System.Environment.ExitCode); } } while (message != "SERVER&gt;&gt;&gt; TERMINATE"); displayText.Text += "\r\nClosing connection.\r\n"; //step4: close connection writer.Close(); reader.Close(); output.Close(); client.Close(); Application.Exit(); } catch (Exception error) { MessageBox.Show(error.ToString()); } } } </code></pre> <p>}</p> http://stackoverflow.com/questions/1886167/tcp-send-recv-error-reporting 0 TCP send/recv error reporting rohan 2009-12-11T06:21:50Z 2009-12-11T08:21:24Z <p>I have a client/server program (Windows, winsock2) which communicates over TCP. The client connects and sends data to server (using send) in 8K at a time. The server just reads data (using recv).</p> <p>No special settings done on sockets.</p> <p>Problem: When some network error occurs during the communication (e.g. cable pulled out), receiver do not get data successfully sent by that time. To simplify, Client sent 80K data in 10 calls to send. (all sends are successful). 11th send failed because of some network issue. No more data sent after this.</p> <p>Problem is that at receiver, not all 80K data is received. It is always less than 80K.</p> <p>I expect as sender as successfully sent 80K, TCP will guarantee that much data is delivered to destination TCP (data may not be received by application yet, but its in destination TCP buffers).</p> <p>Am I missing anything?</p> <p>Thanks</p> <p>Edit:</p> <p>Sample code</p> <p>Server/receiver</p> <pre><code>/* create socket */ /* listen */ /* accept connection */ char recvbuf[8192]; do { iResult = recv(ClientSocket, recvbuf, sizeof(recvbuf), 0); if (iResult &gt; 0) { total += iResult; printf("Total bytes received: %d\n", total); } else if (iResult == 0) { printf("Connection is closing...\n"); break; } else { printf("recv failed: %d\n", WSAGetLastError()); break; } } while (iResult &gt; 0); </code></pre> <p><hr></p> <p>Client/sender :</p> <pre><code>/* create socket */ /* connect to server */ char sendbuf[8192]; do { // Send an initial buffer iResult = send( ConnectSocket, sendbuf, sizeof(sendbuf), 0 ); if (iResult == SOCKET_ERROR) { printf("send failed: %d\n", WSAGetLastError()); break; } total += iResult; printf("Total bytes Sent: %ld\n", total); } while(iResult &gt; 0); //wait before cleaning up getc(stdin); </code></pre> http://stackoverflow.com/questions/1884722/is-there-a-way-to-wait-for-a-listening-socket-on-win32 0 Is there a way to wait for a listening socket on win32? arolson101 2009-12-10T23:04:50Z 2009-12-11T08:03:45Z <p>I have a server and client program on the same machine. The server is part of an application- it can start and stop arbitrarily. When the server is up, I want the client to connect to the server's listening socket. There are win32 functions to wait on file system changes (ReadDirectoryChangesW) and registry changes (RegNotifyChangeKeyValue)- is there anything similar for network changes? I'd rather not have the client constantly polling.</p> http://stackoverflow.com/questions/1884804/checking-for-presence-of-net-remoting-server-is-my-approach-correct 2 Checking for presence of .NET remoting server - is my approach correct? Michael Petrotta 2009-12-10T23:20:02Z 2009-12-11T01:23:54Z <p>It's not possible to set a connection timeout on a .NET remoting call. Documentation occasionally refers to <a href="http://msdn.microsoft.com/en-us/library/system.runtime.remoting.channels.tcp.tcpchannel.aspx" rel="nofollow">TcpChannel</a> properties that allegedly do this, but <a href="http://social.msdn.microsoft.com/Forums/en/netfxremoting/thread/22d06986-b0a3-42f8-a5bd-43e950302fdf" rel="nofollow">discussions</a> and the most recent <a href="http://msdn.microsoft.com/en-us/library/bb187434%28VS.85%29.aspx" rel="nofollow">docs</a> I've found indicate that this is not possible. One may set a timeout on the remoting call itself, but not on the initial connection attempt. You're stuck with the default 45-second timeout.</p> <p>For various reasons I can't use WCF.</p> <p>This causes a problem when the remoting server goes away. If I attempt to make a remoting call, I'm stuck for those 45 seconds. That's not good. I want to check for the presence of the remoting server. Pinging it with a <code>PingTimeout</code> is the simplest approach, but I want to check specifically for the remoting server, as opposed to just the machine being up.</p> <p>After some experimentation, I've come up with this approach:</p> <ol> <li>Asynchronously begin a TCP socket connection to the remoting port. </li> <li>Wait for the connection to complete, or a timeout to expire (using a ManualResetEvent).</li> <li>If the connection async callback succeeded, return success. Otherwise, return failure.</li> </ol> <p>This works, but I'm unsure about my use of my WaitHandle and socket. I'd also like to assure thread-safety WRT concurrent checks, which I think I've done. My code's below. Do you see any problems with my approach?</p> <pre><code>private static bool IsChannelOpen(string ip, int port, int timeout) { IPEndPoint endpoint = new IPEndPoint(IPAddress.Parse(ip), port); Socket client = new Socket(endpoint.AddressFamily, SocketType.Stream, ProtocolType.Tcp); SocketTestData data = new SocketTestData() { Socket = client, ConnectDone = new ManualResetEvent(false) }; IAsyncResult ar = client.BeginConnect (endpoint, new AsyncCallback(TestConnectionCallback), data); // wait for connection success as signaled from callback, or timeout data.ConnectDone.WaitOne(timeout); client.Close(); return data.Connected; } private static void TestConnectionCallback(IAsyncResult ar) { SocketTestData data = (SocketTestData)ar.AsyncState; data.Connected = data.Socket.Connected; if (data.Socket.Connected) { data.Socket.EndConnect(ar); } data.ConnectDone.Set(); // signal completion } public class SocketTestData { public Socket Socket { get; set; } public ManualResetEvent ConnectDone { get; set; } public bool Connected { get; set; } } </code></pre> http://stackoverflow.com/questions/1877576/c-socket-message-contains-extra-ascii-0-character 0 C++ socket message contains extra ASCII 0 character Dopyiii 2009-12-09T23:09:00Z 2009-12-10T20:34:50Z <p>So this is a really strange problem. I have a Java app that acts as a server, listens for and accepts incoming client connections, and then read data (XML) off of the socket. Using my Java client driver, everything works great. I receive messages as expected. However, using my C++ client driver on the first message only, the very first character is read to be an ASCII 0 (shows up like a little box). We're using the standard socket API in C++, sending in a char* (we've done char*, std::string, and just text in quotes).</p> <p>I used Wireshark to sniff the packet and sure enough, it's in there off of the wire. Admittedly, I haven't done the same on the client computer. My argument is that it really shouldn't matter, but correct me if that assumption is incorrect.</p> <p>So my question: what the heck? Why does just the first message contain this extra prepended data, but all other messages are fine? Is there some little trick to making things work?</p> http://stackoverflow.com/questions/1801235/any-good-website-teaches-datagram-sockets-use-in-java 1 Any good website teaches datagram sockets use in Java? Superhero 2009-11-26T02:26:45Z 2009-12-10T19:11:55Z <p>I want to program in Java some application that would use sockets, specially UDP sockets, do you have by chance any good website where I can find some resources ? </p> http://stackoverflow.com/questions/1879217/socket-return-no-such-file-or-directory 0 socket return 'No such file or directory" robUK 2009-12-10T07:27:35Z 2009-12-10T16:43:13Z <p>Hello,</p> <p>Linux GCC 4.4.2</p> <p>I am doing some socket programming.</p> <p>However, I keep getting this error when I try and assign the sockfd from the socket function.</p> <pre><code>" Socket operation on non-socket" </code></pre> <p>Many thanks for any advice,</p> <pre><code>#if defined(linux) #include &lt;pthread.h&gt; /* Socket specific functions and constants */ #include &lt;sys/types.h&gt; #include &lt;sys/socket.h&gt; #include &lt;netinet/in.h&gt; #include &lt;netdb.h&gt; #include &lt;errno.h&gt; #endif #include "server.h" #include "cltsvr_ults.h" /* Listens for a connection on the designated port */ void wait_client() { struct addrinfo add_info, *add_res; int sockfd; /* Load up the address information using getaddrinfo to fill the struct addrinfo */ memset(&amp;add_info, 0, sizeof(add_info)); /* Use either IPv4 or IPv6 */ add_info.ai_family = AF_UNSPEC; add_info.ai_socktype = SOCK_STREAM; /* Fill in my IP address */ add_info.ai_flags = AI_PASSIVE; /* Fill the struct addrinfo */ int32_t status = 0; if(status = getaddrinfo(NULL, "6000", &amp;add_info, &amp;add_res) != 0) { fprintf(stderr, "getaddrinfo [ %s ]\n", gai_strerror(status)); return; } if((sockfd = (socket(add_res-&gt;ai_family, add_res-&gt;ai_socktype, add_res-&gt;ai_protocol)) == -1)) { fprintf(stderr, "Socket failed [ %s ]\n", strerror(errno)); return; } /* Bind to the port that has been assigned by getaddrinfo() */ if(bind(sockfd, add_res-&gt;ai_addr, add_res-&gt;ai_addrlen) != 0) { fprintf(stderr, "Bind failed [ %s ]\n", strerror(errno)); return; } printf("Listening for clients\n"); } </code></pre> <p>Edit == coding in the old-school method</p> <pre><code> int32_t sockfd = 0; struct sockaddr_in my_addr; memset(&amp;my_addr, 0, sizeof(my_addr)); my_addr.sin_family = AF_INET; my_addr.sin_port = htons(6000); my_addr.sin_addr.s_addr = inet_addr("127.0.0.1"); sockfd = socket(PF_INET, SOCK_STREAM, 0); if(sockfd == -1) { fprintf(stderr, "Socket failed [ %s ]\n", strerror(errno)); return; } if(bind(sockfd, (struct sockaddr *) &amp;my_addr, sizeof(my_addr)) == -1) { fprintf(stderr, "Bind failed [ %s ]\n", strerror(errno)); return; } </code></pre> http://stackoverflow.com/questions/1882125/could-not-be-performed-exception-using-a-socket-to-do-a-udp-multicast 0 Could not be performed exception using a socket to do a UDP Multicast Kelly 2009-12-10T16:16:02Z 2009-12-10T16:31:42Z <p>When running a C# app I created on XP it runs just fine, but under Windows 7, I get the following error: </p> <p>"An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full"</p> <p>I am doing the following:</p> <pre><code>socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp); socket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true); IPAddress localIPAddr = IPAddress.Any; EndPoint localEP = new IPEndPoint(localIPAddr, MulticastPort); socket.Bind(localEP); MulticastOption mcastOption = new MulticastOption(MulticastAddress, localIPAddr); socket.SetSocketOption(SocketOptionLevel.IP, SocketOptionName.AddMembership, mcastOption); byte[] bytes = new Byte[40960]; </code></pre> <p>The error happens on the second last line socket.SetSocketOption(...)</p> <p>You'll notice I'm doing UDP multicasting, is there something I need to do for Windows 7 to allow this?</p> http://stackoverflow.com/questions/1875105/filtering-udp-loopback-on-linux-in-c 1 Filtering UDP loopback on Linux in C Pawel 2009-12-09T16:34:21Z 2009-12-10T12:19:18Z <p>Hi, I have an application bound to eth0, sending UDP packets on port A to 255.255.255.255. At the same time, I have a UDP server bound to eth0, 0.0.0.0 and port A.</p> <p>What I want to do is to make sure that the server won't receive messages generated by the application (handled purely in software by the kernel) but it will receive messages generated by other hosts in the network.</p> <p>I can't change the payload of UDP packets nor add any headers to it.</p> <p>I've already implemented a solution using RTNETLINK to fetch all IP addresses of the machine I'm sitting on (and filter basing on address from recvfrom()), but I'm wondering if there might be a simpler and cleaner solution.</p> <p>EDIT: I thought about something like tagging the skb - the tag would disappear after leaving a physical interface, but wouldn't if it's just routed in the software.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1879124/socket-communication-on-a-machine-with-more-than-1-ip-address 2 Socket communication on a machine with more than 1 IP address viswanathan 2009-12-10T06:55:07Z 2009-12-10T09:17:32Z <p>I have a service which listens for incoming connections on a TCP\IP port number say 7000. Also my machine is having more than 1 NIC cards and more than 1 IP address.( in other words i am having 2 LANs, LAN and LAN2 and 2 Ips).</p> <p>Now I have configured my client application(in another machine with only 1 IP) to establish a connection to my server and i give the port number as 7000 and IP to which it must try connecting as IP1 of LAN of the server.</p> <p>However I notice that the client is unable to make a connection, but when I disable LAN2 I notice that the client is able to make a connection with the server.</p> <p>What could be wrong?</p> http://stackoverflow.com/questions/1175108/specify-source-ip-address-for-tcp-socket-when-using-linux-network-device-aliases 0 Specify source IP address for TCP socket when using Linux network device aliases Wade 2009-07-23T23:46:47Z 2009-12-10T09:12:34Z <p>For some specific networking tests, I've created a VLAN device, eth1.900, and a couple of aliases, eth1.900:1 and eth1.900.2.</p> <pre> eth1.900 Link encap:Ethernet HWaddr 00:18:E7:17:2F:13 inet addr:1.0.1.120 Bcast:1.0.1.255 Mask:255.255.255.0 eth1.900:1 Link encap:Ethernet HWaddr 00:18:E7:17:2F:13 inet addr:1.0.1.200 Bcast:1.0.1.255 Mask:255.255.255.0 eth1.900:2 Link encap:Ethernet HWaddr 00:18:E7:17:2F:13 inet addr:1.0.1.201 Bcast:1.0.1.255 Mask:255.255.255.0 </pre> <p>When connecting to a server, is there a way to specify which of these aliases will be used? I can ping using the -I &lt;ip&gt; address option to select which alias to use, but I can't see how to do it with a TCP socket in code without using raw sockets, since I would also like to run without extra socket privileges, i.e. not running as root, if possible.</p> <p>Unfortunately, even with root, SO_BINDTODEVICE doesn't work because the alias device name is not recognized:</p> <pre><code>printf("Bind to %s\n", devname); if (setsockopt(s, SOL_SOCKET, SO_BINDTODEVICE, (char*)devname, sizeof(devname)) != 0) { perror("SO_BINDTODEVICE"); return 1; } </code></pre> <p>Output:</p> <pre> Bind to eth1.900:1 SO_BINDTODEVICE: No such device </pre> http://stackoverflow.com/questions/1871655/how-can-i-listen-on-multiple-sockets-in-perl 1 How can I listen on multiple sockets in Perl? alex 2009-12-09T04:54:12Z 2009-12-09T15:05:48Z <p>Hi:</p> <p>I want to listen on different sockets on a TCP/IP client written in Perl. I know I have to use <code>select()</code> but I don't know exactly how to implement it.</p> <p>Can someone show me examples?</p> <p>Thanks</p> http://stackoverflow.com/questions/1872567/how-to-get-a-more-stable-socket-connection-in-linux-c 0 How to get a more stable socket connection in Linux/C. Henrik 2009-12-09T09:15:15Z 2009-12-09T09:43:19Z <p>I'm running a game website where users connect using an Adobe Flash client to a C server running on a Fedora Linux box. </p> <p>Often users complain about disconnects. Usually they're "Connection reset by peer"-disconnects. </p> <p>Is there any way to make the connection more stable or does it all depend on the route from the user host to my server? </p> <p>One thing I tried is to make it more stable by sending PING in clear text every other minute to avoid timeout problems.</p> <p>Anyone got more ideas?</p> http://stackoverflow.com/questions/1871175/is-there-a-way-to-locate-a-tcp-server-running-under-local-network 0 Is there a way to locate a TCP Server running under local network? Y_Y 2009-12-09T01:58:11Z 2009-12-09T02:05:09Z <p>Is there a way to locate a TCP Server running under local network using raw sockets and C#?</p> <p>-The Client searching for the Server is running under the same local network as the Server and it knows the port the Server is running with.</p> <p>-is it by Broadcast?</p> http://stackoverflow.com/questions/1836109/is-this-a-proper-use-of-the-asynchronous-cababilities-of-the-socket-class 1 Is this a proper use of the asynchronous cababilities of the Socket class? ChaosPandion 2009-12-02T21:57:17Z 2009-12-09T02:01:32Z <pre><code>/// &lt;summary&gt;&lt;/summary&gt; private Byte[] _ReceiveBytes(Int32 size) { MemoryStream memory = null; SocketAsyncEventArgs args = null; EventHandler&lt;SocketAsyncEventArgs&gt; completed = null; Exception exception = null; Int32 last_update = Environment.TickCount; Boolean finished = false; Int32 count = 0; Int32 received = 0; completed = new EventHandler&lt;SocketAsyncEventArgs&gt;((s, e) =&gt; { try { count = e.BytesTransferred; last_update = (count &gt; 0 ? Environment.TickCount : last_update); memory.Write(e.Buffer, 0, count); received += count; finished = (received == size); if (!finished) { count = Math.Min(_ChunkSize, size - received); args.SetBuffer(new Byte[count], 0, count); if (!_Socket.ReceiveAsync(e)) { completed(s, e); } } } catch (Exception ex) { exception = ex; } }); using (memory = new MemoryStream()) using (args = new SocketAsyncEventArgs()) { count = Math.Min(_ChunkSize, size - received); args.SetBuffer(new Byte[count], 0, count); args.Completed += completed; if (!_Socket.ReceiveAsync(args)) { completed(_Socket, args); } while (!finished) { Thread.Sleep(_SleepTimeSpan); if (exception != null) { throw new Exception(_ReceiveExceptionMessage, exception); } else if (!finished &amp;&amp; Environment.TickCount - last_update &gt; _ReceiveTimeout) { throw new TimeoutException(_TimeoutExceptionMessage); } } return memory.ToArray(); } } </code></pre> http://stackoverflow.com/questions/1863663/returning-data-from-asynchronous-socket-requests-correctly 0 Returning data from asynchronous socket requests correctly? rhythmaddict 2009-12-07T23:38:25Z 2009-12-08T17:25:41Z <p>Hi all,<br> This is my first foray into asynchronous socket development, so I'm open to any and all suggestions - thought I do have a specific q. My objective is to make a series of httpRequests using raw async sockets, I need to grab the http response headers that the server replies with. I adapted the code from this MSDN article: <a href="http://msdn.microsoft.com/en-us/library/bew39x2a.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bew39x2a.aspx</a> -- my code is below.</p> <p>It seems to work fine [I test against localhost]...except for one thing. In the StartClient() method, if I don't do the Thread.Sleep(), the contents of my dictionary, <em>responseResults</em>, contains the correct number of requests that I provide to the method, <em>however</em> the values are duplicates (IE, the headers are identical for all the http requests I make). With the Thread.Sleep(), however, everything seems to be honky dory in the dictionary (E.g., I get the correct response headers in my dictionary). I'm sure there is a correct way to do this w/o Thread.Sleep - I just want to know what it is and how I go about implementing it! </p> <p>Thanks in advance!</p> <pre><code>namespace Async2 { public class Program { public static int Main(String[] args) { List&lt;string&gt; hitUrls = new List&lt;string&gt;() { "http://www.someUrl.com", "http://www.someOtherUrl.com" }; AsynchronousClient asyncClient = new AsynchronousClient(); asyncClient.StartClient(hitUrls, AsynchronousClient.Response.HttpCode); Console.WriteLine("Press enter key to exit..."); Console.ReadLine(); return 0; } } // State object for receiving data from remote device. public class StateObject { // Client socket. public Socket workSocket = null; // Size of receive buffer. public const int BufferSize = 1024; public byte[] buffer = new byte[BufferSize]; // Received data string. public StringBuilder responseContent = new StringBuilder(); public string responseHeaders = string.Empty; } public class AsynchronousClient { public enum Response { HttpCode = 0, HttpContent = 1 } // Indicates whether you want the full server response (headers + content) or only the http response code (200, etc.) private Response responseType { get; set; } // ManualResetEvent instances signal completion. private ManualResetEvent connectDone = new ManualResetEvent(false); private ManualResetEvent sendDone = new ManualResetEvent(false); private ManualResetEvent receiveDone = new ManualResetEvent(false); // The response from the remote device. private String response = String.Empty; private StringBuilder httpResponseCode = new StringBuilder(); private StringBuilder httpResponseContent = new StringBuilder(); private Dictionary&lt;string, string&gt; responseResults; static IPHostEntry ipHostInfo = null; static IPAddress ipAddress = null; static IPEndPoint remoteEP = null; static Socket client = null; static Uri uri = null; private static Uri getUrl(string url) { Uri uri = null; try { uri = new Uri(url); } catch (Exception e) { throw e; } return uri; } public void StartClient(IEnumerable urls, Response responseType) { this.responseType = responseType; responseResults = new Dictionary&lt;string, string&gt;(); try { IEnumerator urlEnumerator = urls.GetEnumerator(); string currentUrl = string.Empty; while (urlEnumerator.MoveNext()) { connectDone.Reset(); currentUrl = urlEnumerator.Current.ToString(); uri = getUrl(currentUrl); ipHostInfo = Dns.GetHostEntry(uri.Host); ipAddress = ipHostInfo.AddressList[0]; remoteEP = new IPEndPoint(ipAddress, uri.Port); client = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp); client.BeginConnect(remoteEP, new AsyncCallback(ConnectCallback), client); connectDone.WaitOne(); Send(client, "GET " + uri.AbsolutePath + " HTTP/1.1\r\n Host:" + uri.Host + "\r\n\r\n"); sendDone.WaitOne(); Receive(client); receiveDone.WaitOne(); Thread.Sleep(500); responseResults.Add(currentUrl, responseType == Response.HttpContent ? httpResponseContent.ToString() : httpResponseCode.ToString()); // Release the socket if this is a request for all content if (responseType == Response.HttpContent) { client.Shutdown(SocketShutdown.Both); client.Close(); } } } catch (Exception e) { Console.WriteLine(e.ToString()); } } private void ConnectCallback(IAsyncResult ar) { try { // Retrieve the socket from the state object. Socket client = (Socket)ar.AsyncState; // Complete the connection. client.EndConnect(ar); Console.WriteLine("Socket connected to {0}", client.RemoteEndPoint.ToString()); // Signal that the connection has been made. connectDone.Set(); } catch (Exception e) { Console.WriteLine(e.ToString()); } } private void Receive(Socket client) { try { // Create the state object. StateObject state = new StateObject(); state.workSocket = client; client.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0, GetCallbackType(), state); } catch (Exception e) { Console.WriteLine(e.ToString()); } } private void ReceiveCallbackContent(IAsyncResult ar) { try { StateObject state = (StateObject)ar.AsyncState; Socket client = state.workSocket; int bytesRead = 0; if (client.Connected) { bytesRead = client.EndReceive(ar); } //if (bytesRead &gt; 0) if (bytesRead == state.buffer.Length) { // There might be more data, so store the data received so far. state.responseContent.Append(Encoding.ASCII.GetString(state.buffer, 0, bytesRead)); // Get the rest of the data. client.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0, new AsyncCallback(ReceiveCallbackContent), state); } else { // All the data has arrived; put it in response. if (state.responseContent.Length &gt; 1) { state.responseContent.Append(Encoding.ASCII.GetString(state.buffer, 0, bytesRead)); httpResponseContent = new StringBuilder(); httpResponseContent.Append(state.responseContent); Console.WriteLine(httpResponseContent.ToString()); } // Signal that all bytes have been received. receiveDone.Set(); } } catch (Exception e) { Console.WriteLine(e.ToString()); } } private void ReceiveCallbackHeaders(IAsyncResult ar) { try { StateObject state = (StateObject)ar.AsyncState; Socket client = state.workSocket; int bytesRead = 0; if (client.Connected) { bytesRead = client.EndReceive(ar); } if (bytesRead &gt; 0) { state.responseContent.Append(Encoding.ASCII.GetString(state.buffer, 0, bytesRead)); if (client.Connected)//just to be safe { client.BeginReceive(state.buffer, 0, StateObject.BufferSize, 0, new AsyncCallback(ReceiveCallbackHeaders), state); } System.Text.RegularExpressions.MatchCollection matches = new System.Text.RegularExpressions.Regex("[^\r\n]+").Matches(state.responseContent.ToString() .Substring(0, state.responseContent.ToString() .IndexOf("\r\n\r\n")) .TrimEnd('\r', '\n')); httpResponseCode = new StringBuilder(); for (int n = 0; n &lt; matches.Count; n++) { httpResponseCode.Append(matches[n].Value.ToString() + "\r\n"); } //Buffer is allocated to 1024, we should have headers + some content //should be able to safely end requests to this url if you just want headers receiveDone.Set(); client.Shutdown(SocketShutdown.Both); client.Disconnect(false); } else { // All the data has arrived; put it in response. if (state.responseContent.Length &gt; 1) { response = state.responseContent.ToString(); } // Signal that all bytes have been received. receiveDone.Set(); } } catch (Exception e) { Console.WriteLine(e.ToString()); } } private AsyncCallback GetCallbackType() { if (responseType == Response.HttpContent) return new AsyncCallback(ReceiveCallbackContent); return new AsyncCallback(ReceiveCallbackHeaders); } private void Send(Socket client, String data) { // Convert the string data to byte data using ASCII encoding. byte[] byteData = Encoding.ASCII.GetBytes(data); // Begin sending the data to the remote device. client.BeginSend(byteData, 0, byteData.Length, 0, new AsyncCallback(SendCallback), client); } private void SendCallback(IAsyncResult ar) { try { // Retrieve the socket from the state object. Socket client = (Socket)ar.AsyncState; int bytesSent = 0; if (client.Connected) bytesSent = client.EndSend(ar); Console.WriteLine("Sent {0} bytes to server.", bytesSent); // Signal that all bytes have been sent. sendDone.Set(); } catch (Exception e) { Console.WriteLine(e.ToString()); } } } </code></pre> <p>}</p>