blob: de4cfae3a04d40b4a7187eb9c080d53bc93b908f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2016 Red Hat, Inc.
*/
#ifndef __NM_PPP_PLUGIN_API_H__
#define __NM_PPP_PLUGIN_API_H__
#include "nm-ppp-manager.h"
typedef const struct {
NMPPPManager *(*create)(const char *iface);
gboolean (*start)(NMPPPManager *manager,
NMActRequest *req,
const char *ppp_name,
guint32 timeout_secs,
guint baud_override,
GError **err);
NMPPPManagerStopHandle *(*stop)(NMPPPManager *manager,
GCancellable *cancellable,
NMPPPManagerStopCallback callback,
gpointer user_data);
void (*stop_cancel)(NMPPPManagerStopHandle *handle);
} NMPPPOps;
#endif /* __NM_PPP_PLUGIN_API_H__ */
|