Problem description,
I am working on my master thesis in computer science, at a local university in Palestine.
My research area is in Internet of things (IoT) security protocols and how to adapt classical security protocols to work in an IoT environment.
In my thesis, I am trying to test some methods (mainly session resumption) to IKEv.2 inside the Ipsec protocol, using Contiki OS as implemented by the Cooja simulation environment.
I need your help to assist me incorporate the session resumption protocol code in C++, so that I can resume my simulation.
I tried my best to develop the code, but every time I try to run it, it always gives me the same error " reading out of memory, stack overflow"
Any idea to overcome this issue is highly appreciated.
Thanking you in advanced.
C++ was not supported in mspgcc, and mspgcc itself is no longer supported. The error is probably correct in that C++ often requires more memory than is available on most MSP430s. Since you're running a simulation you could increase the memory available on the simulated device, but I can't provide help for doing that.