I have made a working server on a pc accepting tcp calls. I've tested the server with a client on another PC and i am able to connect many, many times. I have also made a client on the DS using the httpget example from the latest devkitarm code.
This ds client connects en works just fine. But, sadly there will be a but in the end

I can make 7 calls with the DS client and then it hangs. If i keep the server running and closes the ds client then after restarting the ds client i can make again 7 connections. This makes me believe that the problem is at the DS side. However i really can see what's wrong here. Any help will be highly appreciated.
Code: Select all
void DoRequest(const char* url, const char* action, const char* dv, const char* cmd) {
//---------------------------------------------------------------------------------
// Let's send a simple HTTP request to a server and print the results!
char request_text[220];
strcpy (request_text,"action=");
strcat (request_text, action);
strcat (request_text,"&dv=");
strcat (request_text, dv);
strcat (request_text,"&cmd=");
strcat (request_text, cmd);
puts (request_text);
// Find the IP address of the server, with gethostbyname
struct hostent * myhost = gethostbyname( url );
if(debug) iprintf("Found IP Address!\n");
// Create a TCP socket
int my_socket;
my_socket = socket( AF_INET, SOCK_STREAM, 0 );
if(debug) iprintf("Created Socket!\n");
// Tell the socket to connect to the IP address we found, on port 80 (HTTP)
struct sockaddr_in sain;
sain.sin_family = AF_INET;
sain.sin_port = htons(13000);
sain.sin_addr.s_addr= *( (unsigned long *)(myhost->h_addr_list[0]) );
connect( my_socket,(struct sockaddr *)&sain, sizeof(sain) );
if(debug) iprintf("Connected to server!\n");
// send our request
send( my_socket, request_text, strlen(request_text), 0 );
if(debug) iprintf("Sent our request!\n");
// Print incoming data
if(debug) iprintf("Printing incoming data:\n");
int recvd_len;
char incoming_buffer[256];
while( ( recvd_len = recv( my_socket, incoming_buffer, 255, 0 ) ) != 0 ) {
// if recv returns 0, the socket has been closed.
if(recvd_len>0) { // data was received!
incoming_buffer[recvd_len] = 0; // null-terminate
if(debug) iprintf(incoming_buffer);
}
}
iprintf("Other side closed connection!\n\n");
shutdown(my_socket,0); // good practice to shutdown the socket.
closesocket(my_socket); // remove the socket.
}