Search found 16 matches

by Lino
Sat Apr 04, 2015 11:35 am
Forum: 3DS Development
Topic: Getting last file modified time
Replies: 1
Views: 14093

Getting last file modified time

Hi all,

I need to know (and to update) the file modified time, is there a way with ctrulib?
by Lino
Sat Feb 05, 2011 3:46 am
Forum: Announcements
Topic: libnds 1.4.10, libfat 1.0.9 and default arm7 0.5.19
Replies: 14
Views: 25785

Re: libnds 1.4.10, libfat 1.0.9 and default arm7 0.5.19

Just a question, there are problems with the svn, I cant access at the sources, can you post the libnds sources tarball, please?
by Lino
Sat Aug 14, 2010 5:30 am
Forum: DS/DSi Development
Topic: send with big buffer
Replies: 24
Views: 23513

Re: send with big buffer

Now Im using the select before the send and it works well, but I have again problems.
by Lino
Fri Aug 13, 2010 8:53 pm
Forum: DS/DSi Development
Topic: send with big buffer
Replies: 24
Views: 23513

Re: send with big buffer

Yes I have problems with big packets, the send returns a correct value, but the FB server receives invalid request. Through a sniffer there are 2 o 3 packets, with Wintemute's code it works better, but the packets content are the same. There is always POST .. HTTP/1.1 ( the first packet ) etc etc. I...
by Lino
Fri Aug 13, 2010 7:32 pm
Forum: DS/DSi Development
Topic: send with big buffer
Replies: 24
Views: 23513

Re: send with big buffer

The HTTP POST is good. You can check, the alignment, in the func init_fb. Anyway thare are opcodes with translation in arm cpus.
by Lino
Fri Aug 13, 2010 6:21 pm
Forum: DS/DSi Development
Topic: send with big buffer
Replies: 24
Views: 23513

Re: send with big buffer

Im working on my hb fb4nds, and Im sending a picture, you can read here, the func fb_upload_profile_image.
It woks well sometimes. In the func fb_send_req I create the socket and http request, POST.
by Lino
Fri Aug 13, 2010 5:42 pm
Forum: DS/DSi Development
Topic: send with big buffer
Replies: 24
Views: 23513

Re: send with big buffer

it is not working. Anyway thanks.
by Lino
Fri Aug 13, 2010 12:50 pm
Forum: DS/DSi Development
Topic: send with big buffer
Replies: 24
Views: 23513

Re: send with big buffer

Here's the test : i = 5300; int data_send; for(data_send=0;data_send < i;data_send += res){ res = i - data_send; if(res > 800) res = 800; res = send(cli_sock,&buffer[data_send],res,0); if(res <= 0) break; } res = data_send; The sniffer (only 3 packets for over 5200 bytes) TCP 840 TCP 1460 TCP 14...