diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-05-06 20:58:32 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-05-09 15:45:31 +0200 |
commit | ef76dff225a00008fe0edd1f528c9096f1a91179 (patch) | |
tree | e3e56ed2a228d8c265c709fc97a408af6bb1a3e9 /src/basic/socket-util.h | |
parent | 5e7423ff25b4b9b0a32753b9d1ec82a36e34b290 (diff) | |
download | systemd-ef76dff225a00008fe0edd1f528c9096f1a91179.tar.gz |
util-lib: add new ifname_valid() call that validates interface names
Make use of this in nspawn at a couple of places. A later commit should port
more code over to this, including networkd.
Diffstat (limited to 'src/basic/socket-util.h')
-rw-r--r-- | src/basic/socket-util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/basic/socket-util.h b/src/basic/socket-util.h index 160f7c484b..e9230e4a9f 100644 --- a/src/basic/socket-util.h +++ b/src/basic/socket-util.h @@ -123,6 +123,8 @@ int fd_inc_rcvbuf(int fd, size_t n); int ip_tos_to_string_alloc(int i, char **s); int ip_tos_from_string(const char *s); +bool ifname_valid(const char *p); + int getpeercred(int fd, struct ucred *ucred); int getpeersec(int fd, char **ret); |