up vote 1 down vote favorite
1
share [g+] share [fb]

I'm trying to use native implementation of UDP server/client on Android, I'm using JNI to access the native code from java.

The code was tested successfully on Android 1.5 (HTC Hero) but when I tried to run the same application on Android 2.1 (HTC Legend) I got "Stack Corruption Detected" every time I received a packet bigger than 32 byte and the application crashed.

Does anyone has a clue what could cause the stack corruption?

link|improve this question
Interesting issue. Just found this: groups.google.com/group/android-developers/browse_thread/thread/… – Macarse Aug 10 '10 at 12:42
feedback

1 Answer

I found two possible solutions: 1. Use read instead of recvfrom() 2. When compiling the source code use the android libraries and headers from your ndk. Just add the header files directories to the header search path in the makefile.

Hope it helps

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.