blob: ef081200eed013e8905f8cc909609f9bd463bcc0 (
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
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2016 Red Hat, Inc.
*/
#ifndef __NM_PPP_MANAGER_CALL_H__
#define __NM_PPP_MANAGER_CALL_H__
#include "nm-ppp-manager.h"
NMPPPManager *nm_ppp_manager_create(const char *iface, GError **error);
gboolean nm_ppp_manager_start(NMPPPManager *self,
NMActRequest *req,
const char *ppp_name,
guint32 timeout_secs,
guint baud_override,
GError **error);
NMPPPManagerStopHandle *nm_ppp_manager_stop(NMPPPManager *self,
GCancellable *cancellable,
NMPPPManagerStopCallback callback,
gpointer user_data);
void nm_ppp_manager_stop_cancel(NMPPPManagerStopHandle *handle);
#endif /* __NM_PPP_MANAGER_CALL_H__ */
|