tor_multipath_voip/src/algo_skel.h

14 lines
259 B
C

#pragma once
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include "evt_core.h"
struct algo_skel {
struct evt_core_cat on_udp_data;
struct evt_core_cat on_tcp_data;
struct evt_core_cat on_tcp_co;
};
void algo_naive(struct algo_skel* as);