[android-porting] Socket connection using native socket() functions

2010-08-27 Thread Nand
Hi, I want to open a socket connection using native socket functions. I'm able to bind the socket at the server side. But when i try to connect to server from from a client, the connection is not being accepted at server side. Accept() function is not bien called at server side. Please somebody

Re: [android-porting] Socket connection using native socket() functions

2010-08-27 Thread arindam das
You need to have the connect method in your client side with the server details can be something like: (connect(sock, (struct sockaddr *)server_addr, sizeof(struct sockaddr)) On Fri, Aug 27, 2010 at 12:41 PM, Nand nandithab...@gmail.com wrote: Hi, I want to open a