Russell Bryant wrote:<br>&gt;<br>
&gt; &nbsp; connect(sd,(struct sockaddr *) &amp;serveraddr, sizeof(serveraddr));<br>
&gt;<br>
&gt; strcpy(msg,&quot;Action: Login\r\nUsername: admin\r\nSecret: admin\r\n\r\n&quot;);<br>
&gt; send(sd,msg,strlen(msg)+1,0);<br>
&gt;&gt;<br>&gt;&gt;... this is. &nbsp;Take off the &quot;+1&quot; here and in your next call to send().<br>
&gt;&gt;<br>&gt;&gt;Be sure to try to understand why these changes have been necessary and don&#39;t<br>&gt;&gt;just make them. &nbsp;:)<br><br>Thank you so much. Not only the code is working correctly now, I now understand the portion of the code that did not work and also why it did not work.<br>
<br>Thank you again for helping me out and also making we aware of coding correctly. :)<br>