mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-03 02:20:14 +01:00
* src/ppp-manager/nm-ppp-manager.c src/ppp-manager/nm-ppp-manager.h - (impl_ppp_manager_need_secrets): tries secrets twice before asking the settings daemon for completely new ones - (create_pppd_cmd_line): new parameter 'ppp_name' used to set the local PPP peer name; allow PPP debuging by launching NM with the environment variable NM_PPP_DEBUG defined - (nm_ppp_manager_start): new parameter 'ppp_name' passed to create_pppd_cmd_line() * src/nm-serial-device.c src/nm-serial-device.h - New 'get_ppp_name' function for subclasses to implement to return the local PPP peer name - (real_act_stage2_config): call 'get_ppp_name' function of subclasses and pass that name to the PPP manager * src/nm-device-ethernet.c - (pppoe_stage2_config): pass the PPPoE username to the PPP manager as the local peer name * src/nm-cdma-device.c - (real_get_ppp_name): implement using the CDMA username git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@4141 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
91 lines
3.2 KiB
C
91 lines
3.2 KiB
C
/* -*- Mode: C; tab-width: 5; indent-tabs-mode: t; c-basic-offset: 5 -*- */
|
|
|
|
#ifndef NM_SERIAL_DEVICE_H
|
|
#define NM_SERIAL_DEVICE_H
|
|
|
|
#include <nm-device.h>
|
|
#include <nm-setting-serial.h>
|
|
#include "ppp-manager/nm-ppp-manager.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define NM_TYPE_SERIAL_DEVICE (nm_serial_device_get_type ())
|
|
#define NM_SERIAL_DEVICE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_SERIAL_DEVICE, NMSerialDevice))
|
|
#define NM_SERIAL_DEVICE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_SERIAL_DEVICE, NMSerialDeviceClass))
|
|
#define NM_IS_SERIAL_DEVICE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_SERIAL_DEVICE))
|
|
#define NM_IS_SERIAL_DEVICE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NM_TYPE_SERIAL_DEVICE))
|
|
#define NM_SERIAL_DEVICE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_SERIAL_DEVICE, NMSerialDeviceClass))
|
|
|
|
typedef struct {
|
|
NMDevice parent;
|
|
} NMSerialDevice;
|
|
|
|
typedef struct {
|
|
NMDeviceClass parent;
|
|
|
|
const char * (*get_ppp_name) (NMSerialDevice *device, NMActRequest *req);
|
|
|
|
/* Signals */
|
|
void (*ppp_stats) (NMSerialDevice *device, guint32 in_bytes, guint32 out_bytes);
|
|
} NMSerialDeviceClass;
|
|
|
|
GType nm_serial_device_get_type (void);
|
|
|
|
typedef void (*NMSerialGetReplyFn) (NMSerialDevice *device,
|
|
const char *reply,
|
|
gpointer user_data);
|
|
|
|
typedef void (*NMSerialWaitForReplyFn) (NMSerialDevice *device,
|
|
int reply_index,
|
|
const char *reply,
|
|
gpointer user_data);
|
|
|
|
typedef void (*NMSerialWaitQuietFn) (NMSerialDevice *device,
|
|
gboolean timed_out,
|
|
gpointer user_data);
|
|
|
|
typedef void (*NMSerialFlashFn) (NMSerialDevice *device,
|
|
gpointer user_data);
|
|
|
|
|
|
|
|
gboolean nm_serial_device_open (NMSerialDevice *device,
|
|
NMSettingSerial *setting);
|
|
|
|
void nm_serial_device_close (NMSerialDevice *device);
|
|
gboolean nm_serial_device_send_command (NMSerialDevice *device,
|
|
GByteArray *command);
|
|
|
|
gboolean nm_serial_device_send_command_string (NMSerialDevice *device,
|
|
const char *str);
|
|
|
|
int nm_serial_device_wait_reply_blocking (NMSerialDevice *device,
|
|
guint32 timeout_secs,
|
|
const char **needles,
|
|
const char **terminators);
|
|
|
|
guint nm_serial_device_wait_for_reply (NMSerialDevice *device,
|
|
guint timeout,
|
|
const char **responses,
|
|
const char **terminators,
|
|
NMSerialWaitForReplyFn callback,
|
|
gpointer user_data);
|
|
|
|
void nm_serial_device_wait_quiet (NMSerialDevice *device,
|
|
guint timeout,
|
|
guint quiet_time,
|
|
NMSerialWaitQuietFn callback,
|
|
gpointer user_data);
|
|
|
|
guint nm_serial_device_flash (NMSerialDevice *device,
|
|
guint32 flash_time,
|
|
NMSerialFlashFn callback,
|
|
gpointer user_data);
|
|
|
|
GIOChannel *nm_serial_device_get_io_channel (NMSerialDevice *device);
|
|
|
|
NMPPPManager *nm_serial_device_get_ppp_manager (NMSerialDevice *device);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* NM_SERIAL_DEVICE_H */
|