mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-04 16:50:17 +01:00
* src/NetworkManager.c: - Set up all the shiny new managers. * src/NetworkManagerPolicy.c: - Add the beginnings of new NMPolicy code. Instead of requireing all classes to call into policy code, make the policy code kind of like a supervisor that monitors what's going on and drives the whole NM. * src/nm-hal-manager.c: * src/nm-hal-manager.h: - Collect all libhal code scattered around NM to this one class. - Listen libhal and NMManager events and add/remove devices to NMManager. * src/nm-manager.c: * src/nm-manager.h: - Implment a replacement for NMData. NMData is now officially deprecated. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2291 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
12 lines
311 B
C
12 lines
311 B
C
#ifndef NM_HAL_MANAGER_H
|
|
#define NM_HAL_MANAGER_H
|
|
|
|
#include "nm-manager.h"
|
|
#include "NetworkManagerMain.h"
|
|
|
|
typedef struct _NMHalManager NMHalManager;
|
|
|
|
NMHalManager *nm_hal_manager_new (NMManager *nm_manager, NMData *nm_data);
|
|
void nm_hal_manager_destroy (NMHalManager *manager);
|
|
|
|
#endif /* NM_HAL_MANAGER_H */
|