| 66 | |
| 67 | |
| 68 | void Device::SetRemoteAddress(const std::string &remote, bool ipv6) const |
| 69 | { |
| 70 | GVariant *r = proxy->Call(prxtgt, |
| 71 | "SetRemoteAddress", |
| 72 | g_variant_new("(sb)", remote.c_str(), ipv6)); |
| 73 | if (r) |
| 74 | { |
| 75 | g_variant_unref(r); |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | |
| 80 | bool Device::AddBypassRoute(const std::string &addr, |
no outgoing calls
no test coverage detected