1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-24 02:03:54 +03:00

sd-lldp: rename sd-lldp.[ch] -> sd-lldp-rx.[ch]

This commit is contained in:
Yu Watanabe 2021-09-26 11:51:17 +09:00
parent 82e0689cd8
commit 3a2ee8554e
12 changed files with 15 additions and 16 deletions

View File

@ -4,7 +4,7 @@
#include <unistd.h>
#include "sd-event.h"
#include "sd-lldp.h"
#include "sd-lldp-rx.h"
#include "fd-util.h"
#include "fuzz.h"

View File

@ -5,7 +5,6 @@
#include "ether-addr-util.h"
#include "hexdecoct.h"
#include "in-addr-util.h"
#include "lldp-internal.h"
#include "lldp-neighbor.h"
#include "memory-util.h"
#include "missing_network.h"

View File

@ -5,10 +5,10 @@
#include <stdbool.h>
#include <sys/types.h>
#include "sd-lldp.h"
#include "sd-lldp-rx.h"
#include "hash-funcs.h"
#include "lldp-internal.h"
#include "lldp-rx-internal.h"
#include "time-util.h"
typedef struct LLDPNeighborID {

View File

@ -2,7 +2,7 @@
#pragma once
#include "sd-event.h"
#include "sd-lldp.h"
#include "sd-lldp-rx.h"
#include "hashmap.h"
#include "log-link.h"

View File

@ -20,11 +20,11 @@ sources = files('''
dhcp6-protocol.h
icmp6-util.c
icmp6-util.h
lldp-internal.h
lldp-neighbor.c
lldp-neighbor.h
lldp-network.c
lldp-network.h
lldp-rx-internal.h
ndisc-internal.h
ndisc-router.c
ndisc-router.h
@ -40,7 +40,7 @@ sources = files('''
sd-dhcp6-lease.c
sd-ipv4acd.c
sd-ipv4ll.c
sd-lldp.c
sd-lldp-rx.c
sd-ndisc.c
sd-radv.c
'''.split())

View File

@ -4,15 +4,15 @@
#include <linux/sockios.h>
#include <sys/ioctl.h>
#include "sd-lldp.h"
#include "sd-lldp-rx.h"
#include "alloc-util.h"
#include "ether-addr-util.h"
#include "event-util.h"
#include "fd-util.h"
#include "lldp-internal.h"
#include "lldp-neighbor.h"
#include "lldp-network.h"
#include "lldp-rx-internal.h"
#include "memory-util.h"
#include "network-common.h"
#include "socket-util.h"

View File

@ -7,7 +7,7 @@
#include <unistd.h>
#include "sd-event.h"
#include "sd-lldp.h"
#include "sd-lldp-rx.h"
#include "alloc-util.h"
#include "fd-util.h"

View File

@ -15,7 +15,7 @@
#include "sd-device.h"
#include "sd-dhcp-client.h"
#include "sd-hwdb.h"
#include "sd-lldp.h"
#include "sd-lldp-rx.h"
#include "sd-netlink.h"
#include "sd-network.h"

View File

@ -11,7 +11,7 @@
#include "sd-dhcp6-client.h"
#include "sd-ipv4acd.h"
#include "sd-ipv4ll.h"
#include "sd-lldp.h"
#include "sd-lldp-rx.h"
#include "sd-ndisc.h"
#include "sd-radv.h"
#include "sd-netlink.h"

View File

@ -5,7 +5,7 @@
#include "dhcp6-protocol.h"
#include "ethtool-util.h"
#include "ipvlan.h"
#include "lldp-internal.h"
#include "lldp-rx-internal.h"
#include "macvlan.h"
#include "ndisc-internal.h"
#include "networkd-link.h"

View File

@ -28,7 +28,7 @@ _not_installed_headers = '''
sd-dhcp-server.h
sd-ipv4acd.h
sd-ipv4ll.h
sd-lldp.h
sd-lldp-rx.h
sd-ndisc.h
sd-netlink.h
sd-network.h

View File

@ -1,6 +1,6 @@
/* SPDX-License-Identifier: LGPL-2.1-or-later */
#ifndef foosdlldphfoo
#define foosdlldphfoo
#ifndef foosdlldprxhfoo
#define foosdlldprxhfoo
/***
systemd is free software; you can redistribute it and/or modify it