sylkie  0.0.2
IPv6 Address Spoofing with the NDP
sylkie index page

Introduction

This is the inner workings of the sylkie command line tool.

Purpose

The documentation here is targeted at developers that are either contributing to the tool, or are looking to do something more complex. Most use cases can be covered by command line programs, but sometimes it is necessary to directly use the shared lib.

Getting Started

Get the code

git clone https://github.com/dlrobertson/sylkie
cd ./sylkie
# Compile the code
mkdir -p ./build
cd ./build
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=ON ..
make
make install

Run the tests

Ensure that you ran cmake with the additional argument -DBUILD_TESTS=ON.

make test

or

./sylkie_test

Build the docs

Ensure that you ran cmake with the additional argument -DBUILD_DOCS=ON, and make sure doxygen is installed on your local system. If everything has been set up correctly make doc should compile the documentation.