diff options
author | Tom Gundersen <teg@jklm.no> | 2013-11-02 02:13:48 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2013-11-04 23:00:12 +0100 |
commit | be32eb9b7fbcb22e4b648086d644135e38279633 (patch) | |
tree | 55e03fbd88788417614bd6f670c20e70a2be2460 /src/shared/net-util.h | |
parent | fc7689bc9ccf9b94f9a9f666f84c79b8f5b84791 (diff) |
net-config: start split out matching and parsing logic
Move this to src/share/net-util.c, so it can be used elsewhere.
Diffstat (limited to 'src/shared/net-util.h')
-rw-r--r-- | src/shared/net-util.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/shared/net-util.h b/src/shared/net-util.h new file mode 100644 index 0000000000..6b79a9cf80 --- /dev/null +++ b/src/shared/net-util.h @@ -0,0 +1,41 @@ +/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ + +/*** + This file is part of systemd. + + Copyright (C) 2013 Tom Gundersen <teg@jklm.no> + + systemd is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by + the Free Software Foundation; either version 2.1 of the License, or + (at your option) any later version. + + systemd 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public License + along with systemd; If not, see <http://www.gnu.org/licenses/>. +***/ + +#pragma once + +#include <netinet/ether.h> + +#include "udev.h" + +bool net_match_config(const struct ether_addr *match_mac, + const char *match_path, + const char *match_driver, + const char *match_type, + const char *match_name, + struct udev_device *device); + +int config_parse_hwaddr(const char *unit, const char *filename, unsigned line, + const char *section, const char *lvalue, int ltype, + const char *rvalue, void *data, void *userdata); + +int config_parse_ifname(const char *unit, const char *filename, unsigned line, + const char *section, const char *lvalue, int ltype, + const char *rvalue, void *data, void *userdata); |