You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/libsarp/router.cpp

14 lines
167 B
C++

#include <sarp/router.h>
#include <sarp/link.h>
#include "link.hpp"
#include <vector>
namespace sarp
{
struct Router
{
std::vector<Link> activeLinks;
};
}