diff options
author | Hans Dedecker <dedeckeh@gmail.com> | 2017-12-14 14:13:35 +0100 |
---|---|---|
committer | Hans Dedecker <dedeckeh@gmail.com> | 2017-12-15 17:21:12 +0100 |
commit | 4268193c90bdd1532ee0555dd109a43eb8524b04 (patch) | |
tree | 01446f86506959daa1e2007d2753a2fa79bb24b4 /device.h | |
parent | 81ff6d120e8c247b7c714daefd45ae7b90e3b643 (diff) |
interface-ip: harden eui64 IPv6 prefix address generation
Check if a mac address is actually present when generating an eui64 based
IPv6 address; in case of failure bail out.
At the same time make sure the active mac address is used as input for the
eui64 based IPv6 address and guarantee IPv6 prefix address generation is
based on the actual config by resetting the IPv6 prefix address in the
assignment structure when it gets deleted.
Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
Diffstat (limited to 'device.h')
-rw-r--r-- | device.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -244,6 +244,7 @@ int device_type_add(struct device_type *devtype); struct device_type *device_type_get(const char *tname); struct device *device_create(const char *name, struct device_type *type, struct blob_attr *config); +void device_merge_settings(struct device *dev, struct device_settings *n); void device_init_settings(struct device *dev, struct blob_attr **tb); void device_init_pending(void); |