mirror of
https://git.openwrt.org/project/netifd.git
synced 2026-01-13 09:56:40 +08:00
This allows to integrate external daemons that configure network devices with netifd. At startup, netifd generates device handler stubs from descriptions in /lib/netifd/extdev-config via the mechanism in handler.c. These are then added to the list of device handlers. Device handlers stubs act as relays forwarding calls against the device handler interface to the external daemon. Signed-off-by: Arne Kappen <arne.kappen@hhi.fraunhofer.de>
21 lines
624 B
C
21 lines
624 B
C
/*
|
|
* netifd - network interface daemon
|
|
* Copyright (C) 2015 Arne Kappen <arne.kappen@hhi.fraunhofer.de>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2
|
|
* as published by the Free Software Foundation
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
#ifndef __UBUSDEV_H_
|
|
#define __UBUSDEV_H_
|
|
|
|
void extdev_init(void);
|
|
|
|
|
|
#endif
|