active questions tagged network-programming - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T01:16:13Z http://stackoverflow.com/feeds/tag/network-programming http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1781557/route-a-custom-url-to-a-web-application 0 route a custom url to a web-application abhilashca 2009-11-23T07:17:32Z 2009-11-28T08:27:54Z <p>Hi,</p> <p>I have a Vista Home PC with computer-name say *office_pc1* and with IP say 192.168.11.40. I have a web-application, in that pc, which can be successfully accessed via the IP itself.</p> <p>Now, my question is how can I access that web-application if I'm entering the url as: <em><a href="http://support.somedomain.com/" rel="nofollow">http://support.somedomain.com/</a></em>, in my local intranet. Is that possible without using any Server OS? Can I implement, it by adding some entires in the <strong>etc/hosts</strong> file in the System32 folder of that machine.</p> <p>(The web-application is a third-party application. so i cannot touch the source-code)</p> <p>Is this a dreamy question? Thanks.</p> http://stackoverflow.com/questions/1809054/virtual-network-connection 1 Virtual Network Connection Ehsan Baghaki 2009-11-27T14:21:46Z 2009-11-27T14:21:46Z <p>I can see that lot's of programs like openvpn and Teamviewer for their VPN Connection creat a virtual network connection on windows. I want to create one for myself for testing purposes.</p> <p>Is it possible to create one programmatically or so? </p> http://stackoverflow.com/questions/1807981/is-it-possible-to-boot-a-shut-down-system-over-a-network-through-an-application 0 Is it possible to boot a "shut down" system over a network through an application(code) on the network? Colour Blend 2009-11-27T10:34:35Z 2009-11-27T10:40:29Z <p>I was just wondering if by any means an application can boot up a system that has been previously shutdown within the same network.</p> <p>This taught came to my mind after a friend just told me how his system always powers on by itself after he shuts it down. The boot does not happen immediately though.</p> <p>Is it possible and what are the options? I would really doubt it is possible, but i would love to clear these doubts, please.</p> http://stackoverflow.com/questions/1637752/netty-vs-apache-mina 2 Netty vs Apache MINA bugspy.net 2009-10-28T14:48:32Z 2009-11-26T11:09:43Z <p>Pros/Cons of using either ? They both provide roughly the same functionality. Which should I choose to develop my high performance TCP server ?</p> http://stackoverflow.com/questions/1801880/selection-between-ace-boost-for-learning 1 Selection between ACE & Boost for learning markkhansofts 2009-11-26T06:28:25Z 2009-11-26T06:58:39Z <p>Hi everyone, I am an intermediate c++ programmer and done some work using ACE, now I want to learn one of those Libraries thoroughly to progress in to my career. That why I need your kind help to make a decision, that what should I learn first. And also please consider my destinations are to be an expert network programmer and Protocol designer. Thanks for your time and kind answers in advance.</p> http://stackoverflow.com/questions/1748970/audio-streaming-from-iphone-to-a-server 1 Audio streaming from iPhone to a server? EEE 2009-11-17T13:42:11Z 2009-11-25T17:49:23Z <p>How can I stream the audio recorded from iPhone to a server continuously? Am I really have to use RTP? Any other suggestions?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1795193/check-connection-open-or-closed-in-c-in-linux 1 Check connection open or closed ?(in c in Linux) SjB 2009-11-25T07:20:30Z 2009-11-25T13:14:56Z <p>In socket programming in Linux I need to write data in socket but I don't know socket is open or close . how to I know that socket is open and close without read ?</p> <pre><code>printf("befor read%d\n", n); bzero(buffer, MAX_SIZE_BUFFER); n = read(sockfd, buffer, MAX_SIZE_BUFFER - 1); printf("after read%d\n", n); if (n &lt;= 0) { break; } printf("befor write%d, s: %d \n", n , sockfd); n = write(newsockfd, buffer, n); if (n &lt;= 0) { break; } </code></pre> <p>I read from sockfd and I sure this connection is open . When to write buffer in newsockfd I don't know newsockfd is open or close how to check newsockfd is closed ?</p> <p><hr></p> <p>I know problem . in middle of writing connection closed . for example write 1024 data in 500 connection closed and program closed. how to avoid this ?</p> http://stackoverflow.com/questions/1796002/posting-to-the-web-in-clarion 0 POSTing to the web in Clarion Paul McMillan 2009-11-25T10:25:04Z 2009-11-25T10:33:20Z <p>I'm developing a RESTful API for a client. The problem is, he's using a rather obscure language called Clarion. It's proprietary and closed, and the docs are not freely available online.</p> <p>Whenever we discuss passing data from his code to mine, and back again, he starts talking about "ftp file uploads" and direct server-to-server SQL. Needless to say, these ideas bring back visions of the bad old days. I have done some googling, and I can't find any evidence that this language is capable of creating HTTP Post requests at all, let alone using SSL encryption to protect them from prying eyes. </p> <p>I'm looking for advice specific enough that I can guide him through implementing his end of the bargain. I specifically want to avoid trying to pass XML requests as files via FTP, or by writing them to the disk and calling some script. It should go without saying, but I'm also not interested in running proprietary clarion server code or DLLs on my server.</p> <p>Is Clarion capable of generating POST requests? Is XML hard to generate in Clarion? Is there a simpler/easier to use format my client may have more sucess with? None of the data is more complex than key/value pairs.</p> <p>I'm coding in python, but I can deserialize any reasonable data format if there's some way to get the data to my server.</p> http://stackoverflow.com/questions/1795874/using-recvfrom-with-raw-sockets-general-doubt 0 Using recvfrom() with raw sockets : general doubt lex 2009-11-25T10:01:48Z 2009-11-25T10:25:50Z <p>I have created a raw socket which takes all IPv4 packets from data link layer (with data link layer header removed). And for reading the packets I use <code>recvfrom</code>.</p> <p>My doubt is: Suppose due to some scheduling done by OS, my process was asleep for 1 sec. When it woke up,it did <code>recvfrom</code> (with number of bytes to be received say 1000) on this raw socket (with the intention of receiving <strong>only one</strong> IPv4 packet and say the size of this packet is 380 bytes). And suppose many network applications were also running simultaneously during this time, so all IPv4 packets must have been queued in the receive buffer of this socket. So now <code>recvfrom</code> will return all 1000 bytes (with other IPv4 packets from 381th byte onwards) bcoz it has enough data in its buffer to return. Although my program was meant to understand only one IPv4 packet</p> <p>So how to prevent this thing? Should I read byte by byte and parse each byte but it is very inefficient.</p> http://stackoverflow.com/questions/1795759/finding-the-type-of-data-in-ipv4-packet 0 Finding the type of data in IPv4 packet lex 2009-11-25T09:39:42Z 2009-11-25T09:44:43Z <p>Excluding options field in IPv4 header, after 20 bytes of header, data follows. That data may be TCP packet, or UDP etc. </p> <p>Now given a IPv4 packet (with header and data), How to find out which type of transport layer packet (TCP/UDP/etc.) is present in data? Actually I am parsing a IPv4 packet so I need to understand this.</p> http://stackoverflow.com/questions/1794430/accessing-data-link-layer-packets 0 Accessing data link layer packets lex 2009-11-25T03:25:34Z 2009-11-25T05:15:21Z <p>I want to create a socket for accessing IPv4 packets from data link layer. From unix network programming V1,</p> <pre><code>socket(PF_PACKET, SOCK_DGRAM, htons(ETH_P_IP)) </code></pre> <p>1)I am implementing a dhcp client, is this the correct way of doing that? (means without accessing data link layer, i cannot receive reply from dhcp server) or is there any other easier way? <strong>also, since this socket will receive all IPv4 packets destined for my system, how should I distinguish dhcp reply packet from other packets?</strong></p> <p>2)please suggest me a good link/tuorial for <strong>network programming with data link layer access</strong>. In the above book, it is not detailed description.</p> <p>This is <a href="http://codepad.org/WdzbdHZC" rel="nofollow">my code</a></p> http://stackoverflow.com/questions/1791616/implementing-dhcp-client 0 Implementing DHCP client lex 2009-11-24T17:24:24Z 2009-11-24T18:28:29Z <p>On unix using C, my client is listening on port 68 with superuser mode. After sending DHCP discover message, when I try to receive, it blocks in recvfrom means there is no message received or is it like system has a process (DHCP client) listening on same port 68 which receives the message and thats my process are not able to receive the message. What is the problem?</p> <p>I have set the socket option SO_REUSEADDR and SO_BROADCAST. I am sending to port 67.</p> <pre><code>struct dhcpmessage { uint8_t op; uint8_t htype; uint8_t hlen; uint8_t hops; uint32_t xid; uint16_t secs; uint16_t flags; uint32_t ciaddr; uint32_t yiaddr; uint32_t siaddr; uint32_t giaddr; char chaddr[16]; char sname[64]; char file[128]; char magic[4]; char opt[3]; } __attribute__((__packed__)); #include&lt;stdio.h&gt; #include&lt;ctype.h&gt; #include&lt;stdlib.h&gt; #include&lt;string.h&gt; #include&lt;unistd.h&gt; #include&lt;signal.h&gt; #include&lt;sys/wait.h&gt; #include&lt;sys/types.h&gt; #include&lt;sys/socket.h&gt; #include&lt;netinet/in.h&gt; #include&lt;arpa/inet.h&gt; #include&lt;errno.h&gt; #include&lt;sys/file.h&gt; #include&lt;sys/msg.h&gt; #include&lt;sys/ipc.h&gt; #include&lt;time.h&gt; #include"defs.h" int main() { int sockfd,listenfd,connfd; const int on=1; struct sockaddr_in servaddr,cliaddr,rservaddr; if((sockfd=socket(AF_INET,SOCK_DGRAM,0)) &lt; 0) die("socket"); if(setsockopt(sockfd,SOL_SOCKET,SO_REUSEADDR,&amp;on,sizeof(on)) &lt; 0) die("setsockopt"); if(setsockopt(sockfd,SOL_SOCKET,SO_BROADCAST,&amp;on,sizeof(on)) &lt; 0) die("setsockopt"); bzero(&amp;servaddr,sizeof(servaddr)); bzero(&amp;cliaddr,sizeof(cliaddr)); cliaddr.sin_port = htons(68); cliaddr.sin_family = AF_INET; cliaddr.sin_addr.s_addr = htonl(INADDR_ANY); if(bind(sockfd,(struct sockaddr*)&amp;cliaddr,sizeof(cliaddr)) &lt; 0) die("bind"); servaddr.sin_port = htons(67); servaddr.sin_family = AF_INET; servaddr.sin_addr.s_addr = inet_addr("255.255.255.255"); struct dhcpmessage dhcpmsg; bzero(&amp;dhcpmsg,sizeof(dhcpmsg)); dhcpmsg.op = 1; dhcpmsg.htype = 1; dhcpmsg.hlen = 6; dhcpmsg.hops = 0; dhcpmsg.xid = htonl(1000); dhcpmsg.secs = htons(0); dhcpmsg.flags = htons(0x8000); dhcpmsg.chaddr[0] = 0x00; dhcpmsg.chaddr[1] = 0x1A; dhcpmsg.chaddr[2] = 0x80; dhcpmsg.chaddr[3] = 0x80; dhcpmsg.chaddr[4] = 0x2C; dhcpmsg.chaddr[5] = 0xC3; dhcpmsg.magic[0]=99; dhcpmsg.magic[1]=130; dhcpmsg.magic[2]=83; dhcpmsg.magic[3]=99; dhcpmsg.opt[0]=53; dhcpmsg.opt[1]=1; dhcpmsg.opt[2]=1; if(sendto(sockfd,&amp;dhcpmsg,sizeof(dhcpmsg),0,(struct sockaddr*)&amp;servaddr,sizeof(servaddr)) &lt; 0) die("sendto"); struct dhcpmessage recvdhcpmsg; socklen_t rservlen = sizeof(rservaddr); if(recvfrom(sockfd,&amp;recvdhcpmsg,sizeof(recvdhcpmsg),0,(struct sockaddr*)&amp;rservaddr,&amp;rservlen) &lt; 0) die("recvfrom"); char *str = (char*)&amp;recvdhcpmsg; int i; for(i=0;i&lt;sizeof(recvdhcpmsg);i++) printf("%d_",str[i]); printf("\n"); return 0; } </code></pre> http://stackoverflow.com/questions/1790960/why-dhcp-client-listens-on-port-68 0 Why DHCP client listens on port 68? lex 2009-11-24T15:52:08Z 2009-11-24T15:56:00Z <p>If suppose client does not listen on 68 port,when DHCP server receives the request, it can send it to the address from where it received request (with ephemeral port chosen by client at time of sending), then why does protocol specifies client to be listening on port 68?</p> http://stackoverflow.com/questions/1790750/what-is-the-difference-between-read-and-recv-and-between-send-and-write 4 what is the difference between read() and recv() , and between send() and write() ? SjB 2009-11-24T15:20:52Z 2009-11-24T15:24:51Z <p>what is the difference between read() and recv() , and between send() and write() in socket programming ? performance and speed .</p> http://stackoverflow.com/questions/1788784/could-somebody-help-me-in-spotting-an-error-regarding-uploading-an-image-from-iph 0 Could somebody help me in spotting an error regarding uploading an image from iPhone to server here? unknownthreat 2009-11-24T08:59:56Z 2009-11-24T09:05:06Z <p>I am strictly following the answers from <a href="http://stackoverflow.com/questions/125306/how-can-i-upload-a-photo-to-a-server-with-the-iphone">http://stackoverflow.com/questions/125306/how-can-i-upload-a-photo-to-a-server-with-the-iphone</a>.</p> <p>This part below is the part that get called when my button is pressed.</p> <pre><code>NSLog(@"buttonPressed: %@", [ConnectServerTryViewController getPathForFile: @"myPic.png"]); [[EPUploader alloc] initWithURL:[NSURL URLWithString:@"http://10.27.8.251/senior/uploader.php"] filePath: [ConnectServerTryViewController getPathForFile: @"myPic.png"] delegate:self doneSelector:@selector(onUploadDone:) errorSelector:@selector(onUploadError:)]; </code></pre> <p>and here's my static getPathForFile method of ConnectServerTryViewController class:</p> <pre><code>+ (NSString*) getPathForFile: (NSString*) st{ NSString * path = [[NSBundle mainBundle] bundlePath]; NSString * finalPath = [path stringByAppendingPathComponent: st]; return finalPath; } </code></pre> <p>I am very sure that my php is correct. I can upload an image from my mac to my server without any problem, but below shows the output from XCode's console:</p> <pre><code>2009-11-24 15:43:31.177 ConnectServerTry[1645:20b] buttonPressed: /Users/myName/Library/Application Support/iPhone Simulator/User/Applications/4127CEB7-EFCA-4D84-B7CF-F78ED871A499/ConnectServerTry.app/myPic.png 2009-11-24 15:43:31.179 ConnectServerTry[1645:20b] Begin upload method 2009-11-24 15:43:31.180 ConnectServerTry[1645:20b] Trying urlRequest 2009-11-24 15:43:31.181 ConnectServerTry[1645:20b] Trying connection 2009-11-24 15:43:31.188 ConnectServerTry[1645:20b] Now, wait for the URL connection to call us back. 2009-11-24 15:43:33.781 ConnectServerTry[1645:20b] -[EPUploader(Private) connection:didReceiveResponse:]: self:0x0x3d19760 [Session started at 2009-11-24 15:43:33 +0700.] 2009-11-24 15:43:33.781 ConnectServerTry[1645:20b] -[EPUploader(Private) connection:didReceiveData:]: self:0x0x3d19760 2009-11-24 15:43:33.783 ConnectServerTry[1645:20b] -[EPUploader(Private) connection:didReceiveData:]: data: C:\AppServ\www\senior There was an error uploading the file, please try again! 2009-11-24 15:43:33.784 ConnectServerTry[1645:20b] -[EPUploader(Private) connectionDidFinishLoading:]: self:0x0x3d19760 2009-11-24 15:43:33.784 ConnectServerTry[1645:20b] *** -[ConnectServerTryViewController onUploadError:]: unrecognized selector sent to instance 0x3d21c70 2009-11-24 15:43:33.785 ConnectServerTry[1645:20b] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[ConnectServerTryViewController onUploadError:]: unrecognized selector sent to instance 0x3d21c70' 2009-11-24 15:43:33.785 ConnectServerTry[1645:20b] Stack: ( 8307803, 2435731003, 8689723, 8259190, 8111810, 12403, 12513, 3020196, 3020051, 13428152, 13426200, 13426914, 13426914, 13429398, 13088725, 8091873, 8088648, 87949, 88146, 23633923, 8304 ) </code></pre> <p>Do you appear to know what are some of the possible errors here? </p> <p>Thank you very much.</p> http://stackoverflow.com/questions/1788095/descriptor-passing-with-unix-domain-sockets 1 Descriptor passing with unix domain sockets lex 2009-11-24T05:56:43Z 2009-11-24T08:54:43Z <p>When we want to pass a descriptor from child to process, UNP V1(Unix network programming V1) specifies a complex procedure of doing this, first to create msghdr struct and then something, etc.</p> <p>Why cant we pass a descriptor as normal data means as we do send , recv for other data through unix domain sockets? I am able to understand the process. Please explain the method given in that book.</p> <p>Also, in that book, in read_fd() function, he declares the union to properly align the msghdr struct. How union makes it aligned? and why alignment is required?</p> http://stackoverflow.com/questions/1784927/dhcp-cant-receive-reply-from-server 0 DHCP : Cant receive reply from server Ryan 2009-11-23T18:07:27Z 2009-11-23T20:03:18Z <p>I am working on Ubuntu 9.04. I am running this on VMware workstation. Here is my C code:</p> <pre><code>int sockfd,cnt,addrlen; const int on = 1; struct sockaddr_in servaddr,cliaddr; char reply[512]; sockfd = socket(AF_INET, SOCK_DGRAM, 0); if (sockfd &lt; 0) { perror("socket"); exit(1); } setsockopt(sockfd,SOL_SOCKET,SO_REUSEADDR, &amp;on,sizeof(on)); bzero(&amp;cliaddr, sizeof(cliaddr)); cliaddr.sin_family = AF_INET; cliaddr.sin_addr.s_addr = htonl(INADDR_ANY); cliaddr.sin_port = htons(68); addrlen = sizeof(servaddr); if (bind(sockfd, (struct sockaddr *) &amp;cliaddr, sizeof(cliaddr)) &lt; 0) { perror("bind"); exit(1); } while(1) { cnt = recvfrom(sockfd, reply, sizeof(reply), 0,(struct sockaddr *) &amp;servaddr, &amp;addrlen); if (cnt &lt; 0) { perror("recvfrom"); exit(1); } printf("\nReply Received\n"); } </code></pre> <p>I run this program in one terminal and run 'dhclient' on another. I receive no datagrams. What am I doing wrong?</p> http://stackoverflow.com/questions/1780076/assign-different-ip-for-different-threads-in-a-net-program 0 Assign different IP for different threads in a .net program Eden 2009-11-22T21:34:24Z 2009-11-22T21:42:58Z <p>The computer that runs my program has 6 different IP addresses assigned to it. I need that each thread will use a different IP address for its communication. </p> <p>Specifically I'm using the WebRequest object for communicating. so is there away assign each thread a different IP address to use instead of the default one?</p> <p>Thanks, Eden</p> http://stackoverflow.com/questions/1778741/read-function-in-socket-programming-in-c 0 read() function in socket programming in c SjB 2009-11-22T13:48:01Z 2009-11-22T15:47:07Z <p>I use this code for reading from socket :</p> <pre><code>int n ; char buffer[256]; n = read(newsockfd, buffer, 255); if (n &lt; 0) { error("ERROR reading from socket"); } </code></pre> <p>if the data that must be read bigger than 255 byte (for example 1000) which change must be occured ?</p> <p>I know change <code>char buffer[1000]</code>, I need different solution . </p> http://stackoverflow.com/questions/155243/why-is-it-impossible-without-attempting-i-o-to-detect-that-tcp-socket-was-grace 18 Why is it impossible, without attempting I/O, to detect that TCP socket was gracefully closed by peer? Alexander 2008-09-30T21:49:06Z 2009-11-20T22:13:17Z <p>As a follow up to a recent question (<a href="http://stackoverflow.com/questions/151590/java-how-do-detect-a-remote-side-socket-close">http://stackoverflow.com/questions/151590/java-how-do-detect-a-remote-side-socket-close</a>), I wonder why it is impossible in Java, without attempting reading/writing on a TCP socket, to detect that the socket has been gracefully closed by the peer? This seems to be the case regardless of whether one uses the pre-NIO <code>Socket</code> or the NIO <code>SocketChannel</code>.</p> <p>When a peer gracefully closes a TCP connection, the TCP stacks on both sides of the connection know about the fact. The server-side (the one that initiates the shutdown) ends up in state <code>FIN_WAIT2</code>, whereas the client-side (the one that does not explicitly respond to the shutdown) ends up in state <code>CLOSE_WAIT</code>. Why isn't there a method in <code>Socket</code> or <code>SocketChannel</code> that can query the TCP stack to see whether the underlying TCP connection has been terminated? Is it that the TCP stack doesn't provide such status information? Or is it a design decision to avoid a costly call into the kernel?</p> <p>With the help of the users who have already posted some answers to this question, I think I see where the issue might be coming from. The side that doesn't explicitly close the connection ends up in TCP state <code>CLOSE_WAIT</code> meaning that the connection is in the process of shutting down and waits for the side to issue its own <code>CLOSE</code> operation. I suppose it's fair enough that <code>isConnected</code> returns <code>true</code> and <code>isClosed</code> returns <code>false</code>, but why isn't there something like <code>isClosing</code>?</p> <p>Below are the test classes that use pre-NIO sockets. But identical results are obtained using NIO.</p> <pre><code>import java.net.ServerSocket; import java.net.Socket; public class MyServer { public static void main(String[] args) throws Exception { final ServerSocket ss = new ServerSocket(12345); final Socket cs = ss.accept(); System.out.println("Accepted connection"); Thread.sleep(5000); cs.close(); System.out.println("Closed connection"); ss.close(); Thread.sleep(100000); } } import java.net.Socket; public class MyClient { public static void main(String[] args) throws Exception { final Socket s = new Socket("localhost", 12345); for (int i = 0; i &lt; 10; i++) { System.out.println("connected: " + s.isConnected() + ", closed: " + s.isClosed()); Thread.sleep(1000); } Thread.sleep(100000); } } </code></pre> <p>When the test client connects to the test server the output remains unchanged even after the server initiates the shutdown of the connection:</p> <pre><code>connected: true, closed: false connected: true, closed: false ... </code></pre> http://stackoverflow.com/questions/1708030/how-to-initialize-struct-in6addr 0 How to initialize struct in6_addr? jcyang 2009-11-10T13:39:27Z 2009-11-20T21:54:00Z <p>I do know one method to do this,</p> <pre><code>const struct in6_addr naddr6 = { { 0x3f, 0xfe, 0x05, 0x01, 0x00, 0x08, 0x00, 0x00, 0x02, 0x60, 0x97, 0xff, 0xfe, 0x40, 0xef, 0xab }}; </code></pre> <p>but could not with this,</p> <pre><code>const struct in6_addr naddr6 = { { { 0x3ffe0501, 0x00080000, 0x026097ff, 0xfe40efab } } }; </code></pre> <p>and it seems that I could either 1/2/3 paris of brackets.Why?</p> <p>thanks.</p> http://stackoverflow.com/questions/1770423/how-to-make-a-server-send-a-processed-data-back-to-the-invoking-iphone 0 How to make a server send a processed data back to the invoking iPhone? unknownthreat 2009-11-20T13:28:54Z 2009-11-20T13:49:40Z <p>I am sorry if the title is unclear. Allow me to elaborate further.</p> <p>Firstly, I have an application on an iPhone that will allow the user to upload a data to server. We simply use php to allow the user to upload the data. Secondly, the server will process this data and then return the processed data back to this iPhone. This part is the part that I am still having trouble. </p> <p>My question is "how to make the server send the processed data back to the invoking iPhone?" Are there some sort of "listening to server" method in iPhone SDK or there are other ways to consider? In the case of some errors in connection, is it possible for the server to know which iPhone to send the data back to?</p> http://stackoverflow.com/questions/1736260/how-do-i-gather-tcp-statistics-on-windows 0 How do I gather TCP statistics on Windows? Atlas1j 2009-11-15T01:24:27Z 2009-11-19T17:15:23Z <p>I am interested in gathering some statistics from every TCP connection on a windows box for performance evaluation reasons. I see part of the API I need:</p> <p>"The <a href="http://msdn.microsoft.com/en-us/library/bb408406%28VS.85%29.aspx" rel="nofollow">GetTcpTable2</a> function retrieves the IPv4 TCP connection table." </p> <p>I could obviously poll this function to find new connections, but really what I would like to do is collect some statistics at the <strong>end</strong> of each connection. In other words right before or upon the transition to the <a href="http://msdn.microsoft.com/en-us/library/bb485761%28VS.85%29.aspx" rel="nofollow">MIB_TCP_STATE_DELETE_TCB</a> state. </p> <p>Is there a way to hook into the windows internals or subscribe to an event notification mechanism so I can avoid polling? (I do know about <a href="http://msdn.microsoft.com/en-us/library/aa366510%28VS.85%29.aspx" rel="nofollow">Windows Filtering Platform</a> but it doesn't look like that gives me exactly what I want.)</p> <p>Alternative suggestions would also be appreciated!</p> http://stackoverflow.com/questions/1762847/what-are-the-effects-of-incorrectly-setting-the-netmask 2 What are the effects of incorrectly setting the netmask? zooropa 2009-11-19T12:06:49Z 2009-11-19T12:42:18Z <p>What are the effects of incorrectly setting the netmask? I have a C++ application that sets the network mask of a device. If the netmask is set incorrectly, tftp doesn't seem to work properly. Why would this happen? What other problems occur when the netmask is not properly set for a device/PC? </p> http://stackoverflow.com/questions/1685048/select-problems-in-c-windows-7 2 Select() problems in C (windows 7) Rick 2009-11-06T02:29:47Z 2009-11-19T02:27:03Z <p>I am trying to create a server which uses select() to handle multiple clients, as opposed to multi-threading which I have already accomplished. However select() just doesn't seem to do anything? I have all the necessary system calls e.g. socket() returning to an int called listener. bind() then listen(), all with suitable error checking, which isnt returning any problems. It also compiles just fine.</p> <pre><code>FD_ZERO(&amp;fileDescriptors); FD_ZERO(&amp;tempSet); ..... FD_SET(listener, &amp;fileDescriptors); fdmax = listener; ..... while(1){ if(select(fdmax+1, &amp;tempSet, NULL, NULL, &amp;timeout) == -1){ //error occured } ..... } </code></pre> <p>The client cant establish a connection, however WSAGetLastError() Returns 0 on the client side. And the server, never gets passed select(), apart from returning 0 due to a timeout. Im really struggling to see the problem in my code.</p> http://stackoverflow.com/questions/1622454/twisted-source-ip-address-for-outbound-connections 0 Twisted: source IP address for outbound connections paprika 2009-10-25T23:21:51Z 2009-11-18T18:46:04Z <p>I'm in the process of implementing a service -- written in Python with the Twisted framework, running on Debian GNU/Linux -- that checks the availability of SIP servers. For this I use the OPTIONS method (a SIP protocol feature), as this seems to be a commonplace practice. In order to construct correct and RFC compliant headers, I need to know the source IP address and the source port for the connection that is going to be established. [How] can this be done with Twisted?</p> <p>This is what I tried: I subclassed <a href="http://twistedmatrix.com/documents/8.2.0/api/twisted.internet.protocol.AbstractDatagramProtocol.html" rel="nofollow">protocol.DatagramProtocol</a> and within <code>startProtocol(self)</code> I used <code>self.transport.getHost().host</code> and <code>self.transport.getHost().port</code>. The latter is indeed the port that's going to be used, whereas the former only yields 0.0.0.0.</p> <p>I guess that at this point Twisted doesn't [yet?] know which interface and as such which source IP address will be used. Does Twisted provide a facility that could help me with this or do I need to interface with the OS (routing) in a different way? Or did I just use <code>self.transport.getHost().host</code> incorrectly?</p> http://stackoverflow.com/questions/1726548/how-to-manage-multiple-client-sessions-within-server-application 1 How to manage multiple client sessions within server application? Dan Sosedoff 2009-11-13T01:20:11Z 2009-11-18T14:01:08Z <p>Hello folks,</p> <p>I'm writing web chat application, similar to GTalk. It based on Orbited + Sinatra for client side, and Ruby for server side. I've already implemented all the protocol, everything working good. But. I got a problem - dont know how to deal if there are multiple connections from one user. Let`s say for example, i logged to chat from 2 different browsers. Google handles that really nice, two chats appear to be exactly the same. But my app just shows 2 exactly the same users in contact list, which is incorrect. </p> <p>Here is a small example of server clients pool:</p> <pre><code>Server --&gt; Connections | - Client (User Information, ConnectionID) - Client (User Information, ConnectionID) .... - Client (...) </code></pre> <p>I have 2 types of messages: Private (user-to-user), Public (user-to-conference).</p> <p>Im trying to figure out how to deal with such situation? Any suggestions? </p> http://stackoverflow.com/questions/670808/network-communication-design-patterns 5 Network Communication Design Patterns Mystere Man 2009-03-22T10:19:40Z 2009-11-18T05:19:13Z <p>I've come to realize that several questions I asked in the past, such as <a href="http://stackoverflow.com/questions/622735/how-have-you-structured-your-network-oriented-apps">this</a> really boil down to a more fundamental question.</p> <p>Are there any well known design patterns for network communications and by virtue of it's nature, protocol construction/parsing? A google search has not revealed much.</p> <p>Note that i'm not looking for solutions for any given problem, i'm looking for documented design patterns dealing with network communications and their protocols.</p> <p>EDIT:</p> <p>Please, don't suggest various implementation details or discuss specific protocols unless it's tied to a design pattern. Protocol design is not the issue, it's the design patterns for creating or parsing protocols that i'm looking for, not to mention the communication patterns themselves.</p> <p>EDIT2:</p> <p>I find it hard to believe that nobody has come up with any common patterns for network communication. Yes, I know "it depends", but you can say that about any project, yet there are lots of patterns that cover general ideas. </p> http://stackoverflow.com/questions/1703304/adding-a-mapped-drive-with-wnetaddconnection2-is-not-accessible 0 Adding a mapped drive with WNetAddConnection2 is not accessible palehorse 2009-11-09T19:49:54Z 2009-11-16T20:30:00Z <p>Hi,</p> <p>I'm trying to map a drive using WNetAddCOnnection2 but there's something not quite right. The code that I am using from <a href="http://www.pinvoke.net/default.aspx/mpr/WNetAddConnection2.html" rel="nofollow">pinvoke.net</a> and seems to work at first. If I am stepping through the code I get a 0 for a response and I am able to use System.IO.Directory.GetFiles() to inspect the new mapped drive which leads me to believe that credentials are fine.</p> <p>The problem is that the drive is not available outside of the application. When I type net use from a command prompt I see the drive listed like this:</p> <p><code>Unavailable L: \\&lt;server&gt;\&lt;share&gt; Microsoft Windows Network</code></p> <p>When I try to access the drive I get either:</p> <p><code>The system cannot find the drive specified.</code></p> <p>or</p> <p><code>The system cannot find the path specified.</code></p> <p>Any help would be greatly appreciated.</p> <p>Here's the nutshell of the code in question:</p> <pre><code>NETRESOURCE res = new NETRESOURCE(); res.iScope = RESOURCE_GLOBALNET; res.iType = RESOURCETYPE_DISK; res.iDisplayType = RESOURCEDISPLAYTYPE_SHARE; res.iUsage = RESOURCEUSAGE_CONNECTABLE; res.sRemoteName = share; res.sLocalName = drive; res.sProvider = null; int iFlags = 0; iFlags = CONNECT_UPDATE_PROFILE; int iResult = WNetAddConnection2( ref res, psPassword, psUsername, iFlags ); </code></pre> <p>The iResult always ends up equaling 0.</p> http://stackoverflow.com/questions/675093/twisted-in-java 4 Twisted in Java Joshua 2009-03-23T20:29:26Z 2009-11-16T17:03:31Z <p>What is the closest Java alternative to <a href="http://twistedmatrix.com/trac/wiki/TwistedProject" rel="nofollow">Twisted</a>?</p>