X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fudev%2Fnet%2Flink-config.h;fp=src%2Fudev%2Fnet%2Flink-config.h;h=da5608ce4c9112206cd0b7d7aeb6f0fec27ca5a4;hp=0000000000000000000000000000000000000000;hb=af6f0d422c521374ee6a2dd92df5935a5a476ae5;hpb=ca5c4105733ea439f89b0199cd3f92bc2f2a0b38 diff --git a/src/udev/net/link-config.h b/src/udev/net/link-config.h new file mode 100644 index 000000000..da5608ce4 --- /dev/null +++ b/src/udev/net/link-config.h @@ -0,0 +1,55 @@ +/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ + +/*** + This file is part of systemd. + + Copyright (C) 2013 Tom Gundersen + + 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 . +***/ + +#pragma once + +#include "libudev.h" +#include "util.h" +#include "list.h" + + +typedef struct link_config_ctx link_config_ctx; +typedef struct link_config link_config; + +struct link_config { + char *filename; + + char *match_mac; + char *match_path; + char *match_driver; + char *match_type; + + char *description; + + LIST_FIELDS(link_config, links); +}; + +int link_config_ctx_new(link_config_ctx **ret); +void link_config_ctx_free(link_config_ctx *ctx); + +int link_config_load(link_config_ctx *ctx); +bool link_config_should_reload(link_config_ctx *ctx); + +int link_config_get(link_config_ctx *ctx, struct udev_device *device, struct link_config **ret); +int link_config_apply(link_config_ctx *ctx, struct link_config *config, struct udev_device *device); + +/* gperf lookup function */ +const struct ConfigPerfItem* link_config_gperf_lookup(const char *key, unsigned length);