Network_data_flow_through_kernel API Map
Network_data_flow_through_kernel - here is a detailed IPv4 Network API and data-structure API Map originally published in Linux Foundation Wiki
a Linux and Tech Youtube Channel for advance Linux users, systems and network software programmers and tech enthusiasts
Network_data_flow_through_kernel - here is a detailed IPv4 Network API and data-structure API Map originally published in Linux Foundation Wiki
dst_entry() is one of the important Linux Kernel Networking subsystem data-structure which is used while navigating the packet flow within the IPv4 stack. It contains function pointers one for input…
Detailed scheme of the forwarding operations in 2.6 kernel NAPI – www.researchgate.net/profile/Roberto_Bruschi/publication:Figure 4. Detailed scheme of the forwarding operations in 2.6 kernel NAPI. Image courtesy/source HERE The linux networking architecture…
In the past I discussed in depth about Architecture and big-picture of Circular Ring buffers and its significance which you can go through over HERE. Here I did a live…
A circular buffer, circular queue, cyclic buffer or ring buffer is a data structure is a fixed-size buffer as if it were connected end-to-end or can be a dynamic one…
libpcap is a very popular user-space networking library, with which you can capture and or generate packets. libpcap is the underlying framework for many popular packet capture tools such as…
Usually as a part of network software development you do socket programming. But this is typically done in user-space, where the user-space socket APIs takes the instructions (via socket API…
Every VPN stack is architecture is done in a specific way to accomplish fundamental VPN specifications, requirements and goals. As a part of VPN Network stack architecture quite often we…
When you architect and implement a VPN deployment as a part of standalone setup or leveraging VPN technologies as one of your building blocks of your SD-WAN product architecture, one…
When you learn programming usually you learn about various programming constructs. One of them is about calling APIs (functions) recursively. Recursive function calling is quite common in situations such as…