diff options
Diffstat (limited to 'src/core/ppp/nm-ppp-manager.h')
| -rw-r--r-- | src/core/ppp/nm-ppp-manager.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/core/ppp/nm-ppp-manager.h b/src/core/ppp/nm-ppp-manager.h new file mode 100644 index 00000000..c41dda20 --- /dev/null +++ b/src/core/ppp/nm-ppp-manager.h @@ -0,0 +1,27 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ +/* + * Copyright (C) 2008 Novell, Inc. + * Copyright (C) 2008 - 2016 Red Hat, Inc. + */ + +#ifndef __NM_PPP_MANAGER_H__ +#define __NM_PPP_MANAGER_H__ + +#define NM_PPP_MANAGER_PARENT_IFACE "parent-iface" + +#define NM_PPP_MANAGER_SIGNAL_STATE_CHANGED "state-changed" +#define NM_PPP_MANAGER_SIGNAL_IFINDEX_SET "ifindex-set" +#define NM_PPP_MANAGER_SIGNAL_IP4_CONFIG "ip4-config" +#define NM_PPP_MANAGER_SIGNAL_IP6_CONFIG "ip6-config" +#define NM_PPP_MANAGER_SIGNAL_STATS "stats" + +typedef struct _NMPPPManager NMPPPManager; + +typedef struct _NMPPPManagerStopHandle NMPPPManagerStopHandle; + +typedef void (*NMPPPManagerStopCallback)(NMPPPManager * manager, + NMPPPManagerStopHandle *handle, + gboolean was_cancelled, + gpointer user_data); + +#endif /* __NM_PPP_MANAGER_H__ */ |