This repository is C implementation of Distance Vector Routing algorithm.
.
├── src
├── img
├── CMakeList.txt
├── .clang-format
└── README.md
- CMake Version 3.17.5
- CMake Version 3.17.5
Install CMake from source.
sudo apt-get install -y -q wget
wget https://cmake.org/files/v3.17/cmake-3.17.5.tar.gz
tar xzf cmake-3.17.5.tar.gz
cd cmake-3.17.5
./bootstrap -- -DCMAKE_BUILD_TYPE:STRING=Release
make -j4 # where j is the number of core
sudo make install
To build run the following command in terminal:
mkdir build
cd build
cmake ..
make -j4
$ ./distance-vector-rounting-algorithm
- ❎ Update README.md
- ❎ Add CMake Cross Platform Support