I'm trying to use raw socket in Android NDK C code. While accessing raw socket in Linux needs root privilege. I know that we can get root privilege for shell process by using Java code in a rooted phone:
Runtime.exec("su")
But the problem is how to get root privilege for my current thread/process but not the shell process?