AWS Crash -netos

Hi!

I’ve made a custom software for ConnectME with AWS, but somtimes the web interfaces crashes, and the browser gets a timeout error. After ~1 min. the web interface is up and running again.

What’s the problem? Is it some kind of buffer overflow or something…?

How can I prevent this crash?

/Jakob

I’ve managed to crash AWS couple of timea. Friend of mine did something with perl to generate different accessing methods for the web interface. I didn’t try to hunt it down very much, but it seemed to be related to lenght of http request. And the crash appeared only with this perl thingie, so perhaps it didn’t follow the standards very well.

Actually I should still have the crashing code, so I hope that someday when I have enough time, I can track it down and perhaps file a good PR :slight_smile:

Hi!

In anybody should care I found the solution on how the get rid of the crash.

I changed the heap size in appconf.h to:
#define APP_NET_HEAP_SIZE 0x100000

Now my app works fine again.

/Jakob