I'm writing a kernel module which creates an ip packet and sends it to the required destination. I'm using the function ip_forward() declared in <net/ip.h>. When I try to compile the code, I get an error:
"ip_forward" undefined!
|
I'm writing a kernel module which creates an ip packet and sends it to the required destination. I'm using the function
|
|||||
|
|
It's also an internal function of the IP stack, not meant to be called directly. It may have all sorts of assumptions, which would give you trouble. Perhaps try |
|||||
|