net_with_separate_vfs example
This example presents a basic case of network interaction using Berkeley sockets.
The example consists of Client
and Server
entities linked by a TCP socket using a loopback interface. Standard POSIX functions are used in the code of the entities.
To connect entities using a socket through a loopback, they must use the same network stack instance. This means that they must interact with a "shared" VFS entity (in this example, this entity is called NetVfs
).
To correctly connect the Client
and Server
entities to the NetVfs
entity, the Env entity must also be included in the solution.
The CMake system, which is included with KasperskyOS Community Edition, is used to build and run the example.
Example files
The code of the example and build scripts are available at the following path:
/opt/KasperskyOS-Community-Edition-<version>/examples/net_with_separate_vfs
Building and running example
See the Building and running examples section.