Linux Kernel /proc Interface – Kernel source /proc samples
/proc is one of the most popular kernel to user-space interface which you can leverage to add an interface to your Kernel code such as Kernel modules, Kernel Device Drivers,…
a Linux and Tech Youtube Channel for advance Linux users, systems and network software programmers and tech enthusiasts
/proc is one of the most popular kernel to user-space interface which you can leverage to add an interface to your Kernel code such as Kernel modules, Kernel Device Drivers,…
https://youtu.be/SCdVdli3hhk Here is my sample source-code discussed in the video: /* proc_example.c - /proc access to drop pkts * Author: Kiran Kankipati * Updated: 25-feb-2017 */ #include <linux/kernel.h> #include <linux/types.h>…
/proc is one of the most popular kernel to user-space interface which you can leverage to add an interface to your Kernel code such as Kernel modules, Kernel Device Drivers,…
/proc is one of the most popular kernel to user-space interface which you can leverage to add an interface to your Kernel code such as Kernel modules, Kernel Device Drivers,…
/proc is one of the most popular kernel to user-space interface which you can leverage to add an interface to your Kernel code such as Kernel modules, Kernel Device Drivers,…
https://youtu.be/BkQiZ5rSR8A Here is the Layer-3 IP multicast OSPF Packet raw sockets sample source-code discussed in the video: /*---------- The Linux Channel ------------*/ #include <stdlib.h> #include <unistd.h> #include <sys/socket.h> #include <netinet/in.h>…
https://youtu.be/UyQyPB1GX3U Here is the Layer-2 multicast STP Packet raw sockets sample source-code discussed in the video: /*---------- The Linux Channel ------------*/ #include <stdlib.h> #include <unistd.h> #include <sys/socket.h> #include <netinet/in.h> #include…
https://youtu.be/2mCQjgpoLb0 Here is the VOIP SIP UDP Packet raw sockets sample source-code discussed in the video: /*---------- The Linux Channel ------------*/ #include <stdlib.h> #include <unistd.h> #include <sys/socket.h> #include <netinet/in.h> #include…
https://youtu.be/NZlbyoHgYjk
https://youtu.be/lcv_K7ScpGY Here is the QUIC Protocol raw sockets sample source-code discussed in the video: /*---------- The Linux Channel ------------*/ #include <stdlib.h> #include <unistd.h> #include <sys/socket.h> #include <netinet/in.h> #include <netinet/tcp.h> #include…