diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-05-04 11:31:59 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-05-04 11:31:59 +0200 |
commit | 5119d304ffe4d1bcac27626c842413f5f2defe0d (patch) | |
tree | 885cf6798f613b967fe2c0acd387af9cc371761a /src/network/networkd-netdev-tuntap.c | |
parent | f8e2f4d6a0c6bcb5a03abe580d657b932cdb9798 (diff) | |
parent | 7c285c74190e827c18a336f882cf4d9dcf4ee02a (diff) |
Merge pull request #3156 from keszybz/duid-settings
Rework DUID setting
Diffstat (limited to 'src/network/networkd-netdev-tuntap.c')
-rw-r--r-- | src/network/networkd-netdev-tuntap.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/network/networkd-netdev-tuntap.c b/src/network/networkd-netdev-tuntap.c index 32917fe6d5..088a4d8d32 100644 --- a/src/network/networkd-netdev-tuntap.c +++ b/src/network/networkd-netdev-tuntap.c @@ -17,10 +17,13 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ -#include <net/if.h> -#include <sys/ioctl.h> +#include <fcntl.h> #include <linux/if_tun.h> +#include <net/if.h> #include <netinet/if_ether.h> +#include <sys/ioctl.h> +#include <sys/stat.h> +#include <sys/types.h> #include "alloc-util.h" #include "fd-util.h" |