mirror of
https://github.com/nomoresat/DPITunnel-cli.git
synced 2025-04-16 10:47:44 +02:00
9 lines
251 B
C++
9 lines
251 B
C++
#ifndef PROFILES_H
|
|
#define PROFILES_H
|
|
|
|
void add_profile(std::string name, Profile_s profile);
|
|
|
|
int change_profile(const std::string &iface, const std::string &wifi_ap,
|
|
std::string *choosen_profile_name = NULL);
|
|
|
|
#endif //PROFILES_H
|