Linux Kernel Network Programming – struct iphdr data-structure – ip_send_check() API Example and Sample Demo
https://youtu.be/PGESRcLW8CA Here is my sample source-code discussed in the video: /* ip_send_check.c * Author: Kiran Kankipati * Updated: 15-feb-2017 */ #include <linux/kernel.h> #include <linux/types.h> #include <linux/module.h> #include <linux/errno.h> #include <linux/slab.h>…