]> git.ipfire.org Git - thirdparty/lldpd.git/log
thirdparty/lldpd.git
9 years agorelease: prepare 0.7.14 0.7.14
Vincent Bernat [Sat, 4 Apr 2015 14:29:39 +0000 (16:29 +0200)] 
release: prepare 0.7.14

9 years agoNEWS: add an entry to NEWS file for previous changes
Vincent Bernat [Sun, 29 Mar 2015 16:45:09 +0000 (18:45 +0200)] 
NEWS: add an entry to NEWS file for previous changes

9 years agolib: update revision info to reflect ABI update of latest changes
Vincent Bernat [Sun, 29 Mar 2015 16:44:06 +0000 (18:44 +0200)] 
lib: update revision info to reflect ABI update of latest changes

9 years agolib: a change to port description is transmitted now
Vincent Bernat [Sun, 29 Mar 2015 16:42:14 +0000 (18:42 +0200)] 
lib: a change to port description is transmitted now

9 years agoclient: when receiving a port update, transmit it now
Vincent Bernat [Sun, 29 Mar 2015 16:41:25 +0000 (18:41 +0200)] 
client: when receiving a port update, transmit it now

9 years agolldpcli: use "description" keyword when setting port description
Vincent Bernat [Sun, 29 Mar 2015 16:38:58 +0000 (18:38 +0200)] 
lldpcli: use "description" keyword when setting port description

9 years agolldpcli: document ability to change port id and description
Vincent Bernat [Sun, 29 Mar 2015 16:37:08 +0000 (18:37 +0200)] 
lldpcli: document ability to change port id and description

9 years agolldpcli: ensure optional local port description cannot be repeated
Vincent Bernat [Sun, 29 Mar 2015 16:31:55 +0000 (18:31 +0200)] 
lldpcli: ensure optional local port description cannot be repeated

Also fix some descriptions (no capitalization).

9 years agoMerge pull request #101 from commodo/port_label2
Vincent Bernat [Sun, 29 Mar 2015 16:23:09 +0000 (18:23 +0200)] 
Merge pull request #101 from commodo/port_label2

lldpd: implement basic support to override port IDs via lldpcli

9 years agointerfaces: management address is set to pattern on exact match
Vincent Bernat [Sat, 28 Mar 2015 08:57:43 +0000 (09:57 +0100)] 
interfaces: management address is set to pattern on exact match

When the management pattern is an exact IP address, use it as is instead
of trying to match an interface. When a user doesn't want this
behavior (keeping the check), they should use something like
`192.168.1.15,0` or `!*,!!192.168.1.15` instead of the exact IP address.

This feature allows a user to advertise an out-of-band management IP
address.

Closes #103

9 years agolldpd: add port description override via lldpcli 101/head
Alexandru Ardelean [Tue, 24 Mar 2015 09:10:49 +0000 (11:10 +0200)] 
lldpd: add port description override via lldpcli

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
9 years agolldpd: implement basic support to override port IDs via lldpcli
Alexandru Ardelean [Tue, 24 Mar 2015 07:08:33 +0000 (09:08 +0200)] 
lldpd: implement basic support to override port IDs via lldpcli

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
9 years ago.gitignore: ignore vim swap files
Alexandru Ardelean [Tue, 17 Mar 2015 11:57:05 +0000 (13:57 +0200)] 
.gitignore: ignore vim swap files

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
9 years agostyle: remove `if (...) free(...)` pattern
Vincent Bernat [Mon, 23 Mar 2015 20:35:03 +0000 (21:35 +0100)] 
style: remove `if (...) free(...)` pattern

Using the following Coccinelle patch:

    @@
    expression ptr;
    @@

    - if (ptr) {
    -   free(ptr);
    - }
    + free(ptr);

    @@
    expression ptr;
    @@

    - if (ptr) free(ptr);
    + free(ptr);

    @@
    expression ptr;
    @@

    - if (ptr != NULL) {
    -   free(ptr);
    - }
    + free(ptr);

    @@
    expression ptr;
    @@

    - if (ptr != NULL) free(ptr);
    + free(ptr);

9 years agointerfaces: don't test for NULL before `free`
Vincent Bernat [Mon, 23 Mar 2015 19:56:13 +0000 (20:56 +0100)] 
interfaces: don't test for NULL before `free`

This is unneeded.

9 years agopriv: document improvement in crash handling in NEWS file
Vincent Bernat [Wed, 18 Mar 2015 16:10:12 +0000 (17:10 +0100)] 
priv: document improvement in crash handling in NEWS file

9 years agoRevert "priv: on Linux, when monitor dies, kill child"
Vincent Bernat [Wed, 18 Mar 2015 14:42:24 +0000 (15:42 +0100)] 
Revert "priv: on Linux, when monitor dies, kill child"

This reverts commit 4747e964096a1b490de062460608805c46f0cfd2. This
commit is now useless due to the previous (more portable) commits. It is
harmless but also unneeded.

9 years agopriv: use SOCK_STREAM for monitor communication
Vincent Bernat [Wed, 18 Mar 2015 14:35:10 +0000 (15:35 +0100)] 
priv: use SOCK_STREAM for monitor communication

SOCK_SEQPACKET is better but not available everywhere. We can't just
fallback to SOCK_DGRAM since we lose the ability to detect when the
monitor dies. So, we use SOCK_STREAM (now possible with commit
004b5f944539). The code (stolen from OpenBSD) was already ready for
that.

9 years agopriv: don't log anything when handling SIGCHLD
Vincent Bernat [Wed, 18 Mar 2015 14:33:17 +0000 (15:33 +0100)] 
priv: don't log anything when handling SIGCHLD

Logging is not signal-safe. Notably, we use date-functions which are
using locks.

9 years agopriv: ensure we write exactly what will be read
Vincent Bernat [Wed, 18 Mar 2015 14:25:36 +0000 (15:25 +0100)] 
priv: ensure we write exactly what will be read

When using SOCK_DGRAM/SOCK_SEQPACKET, it doesn't matter to write a bit
more since it is truncated. However, if we want to switch to
SOCK_STREAM, we must exactly write the right amount of bytes.

9 years agoctl: create control socket with close-on-exec semantic
Vincent Bernat [Wed, 18 Mar 2015 14:14:41 +0000 (15:14 +0100)] 
ctl: create control socket with close-on-exec semantic

Otherwise, when we spawn lldpcli, it inherits the file descriptor and
doesn't detect if the daemon dies just after because it is listening
itself to the Unix socket.

9 years agopriv: fallback to SOCK_DGRAM if SOCK_SEQPACKET not available
Vincent Bernat [Wed, 18 Mar 2015 13:34:54 +0000 (14:34 +0100)] 
priv: fallback to SOCK_DGRAM if SOCK_SEQPACKET not available

9 years agopriv: use a SOCK_SEQPACKET for communication with monitor
Vincent Bernat [Wed, 18 Mar 2015 13:21:46 +0000 (14:21 +0100)] 
priv: use a SOCK_SEQPACKET for communication with monitor

This has the same semantics than SOCK_DGRAM but it also supports the
ability to notify the other end of end-of-file events. However, it may
not be widely implemented, hence the separate commit.

9 years agopriv: monitor the monitor process
Vincent Bernat [Wed, 18 Mar 2015 13:20:26 +0000 (14:20 +0100)] 
priv: monitor the monitor process

By monitoring the socket connection with the monitor process, we ensure
that we kill ourselves if the monitor disappears and fails to notice us.

This doesn't work yet because there is no "end of file" event for a
SOCK_DGRAM. See the next commit.

9 years agolog: add token to all `fatalx` instances
Vincent Bernat [Wed, 18 Mar 2015 13:12:58 +0000 (14:12 +0100)] 
log: add token to all `fatalx` instances

The inability to use a token is quite artificial.

9 years agopriv: on Linux, when monitor dies, kill child
Vincent Bernat [Wed, 18 Mar 2015 09:00:44 +0000 (10:00 +0100)] 
priv: on Linux, when monitor dies, kill child

When the monitor dies, it sends its child a TERM signal but if it
segfaults or is killed with an uncatchable signal, the child will
continue to run "unharmed". On Linux, it is possible to send a signal to
the child in this case, with `prctl()`. Do that.

9 years agoevent: don't remember (in cfg) control socket event
Vincent Bernat [Wed, 18 Mar 2015 07:35:53 +0000 (08:35 +0100)] 
event: don't remember (in cfg) control socket event

We don't need it outside of event loop initialization.

9 years agoevent: don't ignore SIGHUP twice
Vincent Bernat [Wed, 18 Mar 2015 07:31:00 +0000 (08:31 +0100)] 
event: don't ignore SIGHUP twice

9 years agobuild: don't use `sort -V`
Vincent Bernat [Thu, 19 Feb 2015 21:52:13 +0000 (22:52 +0100)] 
build: don't use `sort -V`

Not portable enough. Use `sort -k ... -k ...` instead.

9 years agocheck: add missing license headers to some files
Vincent Bernat [Thu, 19 Feb 2015 19:19:42 +0000 (20:19 +0100)] 
check: add missing license headers to some files

9 years agocheck: fix SNMP test format error
Vincent Bernat [Thu, 19 Feb 2015 19:17:44 +0000 (20:17 +0100)] 
check: fix SNMP test format error

9 years agocheck: more comparison with `ck_assert_ptr_eq()`
Vincent Bernat [Thu, 19 Feb 2015 18:59:53 +0000 (19:59 +0100)] 
check: more comparison with `ck_assert_ptr_eq()`

9 years agocheck: compare pointers with `ck_assert_ptr_eq()`
Vincent Bernat [Thu, 19 Feb 2015 18:35:57 +0000 (19:35 +0100)] 
check: compare pointers with `ck_assert_ptr_eq()`

9 years agocheck: enforce correct alignment during SNMP tests
Vincent Bernat [Thu, 19 Feb 2015 16:28:00 +0000 (17:28 +0100)] 
check: enforce correct alignment during SNMP tests

This should fix the following clang error, despite the fact that we know
that the alignment was correct:

```
check_snmp.c:900:9: fatal error: cast from 'u_char *' (aka 'unsigned char *') to
      'unsigned long *' increases required alignment from 1 to 8 [-Wcast-align]
                            *(unsigned long int *)result,
                             ^~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/check.h:220:22: note: expanded from macro 'fail_unless'
        _fail_unless(expr, __FILE__, __LINE__,\
                     ^
1 error generated.
```

9 years agotravis: don't configure with CFLAGS=-Werror
Vincent Bernat [Thu, 19 Feb 2015 16:05:18 +0000 (17:05 +0100)] 
travis: don't configure with CFLAGS=-Werror

This is unsupported. Instead, call `make CFLAGS=-Werror`.

9 years agoconfigure: move LDFLAGS to LLDP_LDFLAGS
Vincent Bernat [Thu, 19 Feb 2015 16:01:35 +0000 (17:01 +0100)] 
configure: move LDFLAGS to LLDP_LDFLAGS

9 years agoconfigure: move CFLAGS/CPPFLAGS to LLDP_CFLAGS/LLDP_CPPFLAGS
Vincent Bernat [Thu, 19 Feb 2015 15:52:55 +0000 (16:52 +0100)] 
configure: move CFLAGS/CPPFLAGS to LLDP_CFLAGS/LLDP_CPPFLAGS

The goal is to avoid the user to override those flags when using `make
CFLAGS=somethingelse`. This is to enable a user to use `make
CFLAGS=-Werror` since this flag cannot be used with `./configure`.

9 years agoconfigure: put cpp flags into CPPFLAGS instead of CFLAGS
Vincent Bernat [Thu, 19 Feb 2015 15:47:06 +0000 (16:47 +0100)] 
configure: put cpp flags into CPPFLAGS instead of CFLAGS

9 years agoconfigure: enforce the use of C99
Vincent Bernat [Thu, 19 Feb 2015 15:30:06 +0000 (16:30 +0100)] 
configure: enforce the use of C99

9 years agoMerge pull request #98 from baloo/features/document-lldp.d
Vincent Bernat [Wed, 18 Feb 2015 14:06:07 +0000 (15:06 +0100)] 
Merge pull request #98 from baloo/features/document-lldp.d

client: document lldp.d configuration directory

9 years agoclient: document lldp.d configuration directory 98/head
Arthur Gautier [Wed, 18 Feb 2015 14:03:20 +0000 (15:03 +0100)] 
client: document lldp.d configuration directory

Signed-off-by: Arthur Gautier <baloo@gandi.net>
9 years agointerfaces: fallback to link local addresses for management
Vincent Bernat [Fri, 13 Feb 2015 18:58:32 +0000 (19:58 +0100)] 
interfaces: fallback to link local addresses for management

When no global address is found for a family, we fallback to a link
local address instead. For IPv4, this is 169.254.0.0/16 and for IPv6,
this is fe80::/64.

Closes #96.

9 years agointerfaces: exclude IPv4 link local addresses from management addresses
Vincent Bernat [Fri, 13 Feb 2015 17:06:49 +0000 (18:06 +0100)] 
interfaces: exclude IPv4 link local addresses from management addresses

Link-local IPv4 addresses (169.254.0.0/16) are not an acceptable
management address. Closes #96.

9 years agointerfaces: enforce redefinition of IN_IS_ADDR_* macros
Vincent Bernat [Fri, 13 Feb 2015 17:02:16 +0000 (18:02 +0100)] 
interfaces: enforce redefinition of IN_IS_ADDR_* macros

For IPv4, some definitions may differ from one OS to another. Better
safe than sorry: use the same definition for everyone.

9 years agopriv: don't lookup for _lldpd when privsep is disabled
Vincent Bernat [Thu, 12 Feb 2015 07:07:43 +0000 (08:07 +0100)] 
priv: don't lookup for _lldpd when privsep is disabled

Closes #95

9 years agolib: fix "unknwon" typo
Vincent Bernat [Fri, 6 Feb 2015 18:16:48 +0000 (19:16 +0100)] 
lib: fix "unknwon" typo

9 years agolib: fix compilation error when Dot3 is disabled
Vincent Bernat [Fri, 6 Feb 2015 18:12:16 +0000 (19:12 +0100)] 
lib: fix compilation error when Dot3 is disabled

Some power maps are shared between Dot3 and LLDP-MED. Closes #94.

9 years agopriv: replace the use of `gethostbyname()` by `getaddrinfo()`
Vincent Bernat [Wed, 28 Jan 2015 13:55:31 +0000 (14:55 +0100)] 
priv: replace the use of `gethostbyname()` by `getaddrinfo()`

`gethostbyname()` was uses to get the canonical name. `getaddrinfo()`
should work even if there is no IPv4 at all in the system.

9 years agopriv: rename "gethostbyname" priv function to "gethostname"
Vincent Bernat [Wed, 28 Jan 2015 13:50:12 +0000 (14:50 +0100)] 
priv: rename "gethostbyname" priv function to "gethostname"

Because, it is not a wrapper around `gethostbyname()` but a way to get
local hostname. It currently uses `gethostbyname()` and therefore relies
on the presence of an IPv4 address in the system.

9 years agobuild: use version sort for changelog
Vincent Bernat [Sun, 25 Jan 2015 21:19:07 +0000 (22:19 +0100)] 
build: use version sort for changelog

9 years agoNEWS: add an entry for the two previous commits
Vincent Bernat [Sat, 17 Jan 2015 15:04:18 +0000 (16:04 +0100)] 
NEWS: add an entry for the two previous commits

9 years agolldp: fix boundary checks when decoding LLDP protocol identity
Vincent Bernat [Sat, 17 Jan 2015 14:49:52 +0000 (15:49 +0100)] 
lldp: fix boundary checks when decoding LLDP protocol identity

9 years agolldp: fix boundary checks when decoding LLDP management address
Vincent Bernat [Sat, 17 Jan 2015 14:49:21 +0000 (15:49 +0100)] 
lldp: fix boundary checks when decoding LLDP management address

9 years agolldpcli: add "tagged" keyword to "configure med policy"
Vincent Bernat [Mon, 12 Jan 2015 19:31:47 +0000 (20:31 +0100)] 
lldpcli: add "tagged" keyword to "configure med policy"

This allows a user to set the tagged flag for a network policy for a
given application.

Fix: #88

9 years agotravis: use stable NetSNMP from Homebrew
Vincent Bernat [Mon, 5 Jan 2015 16:55:26 +0000 (17:55 +0100)] 
travis: use stable NetSNMP from Homebrew

The devel version is not here anymore and the stable one has been
upgraded to 5.7.3.

9 years agolibevent: enable silent rules by default
Vincent Bernat [Mon, 5 Jan 2015 16:01:25 +0000 (17:01 +0100)] 
libevent: enable silent rules by default

9 years agolibevent: update embedded copy to 2.0.22-stable
Vincent Bernat [Mon, 5 Jan 2015 15:57:27 +0000 (16:57 +0100)] 
libevent: update embedded copy to 2.0.22-stable

9 years agoNEWS: add an entry for the two previous commits
Vincent Bernat [Sun, 4 Jan 2015 17:25:25 +0000 (18:25 +0100)] 
NEWS: add an entry for the two previous commits

9 years agolldp: send a shutdown LLDPDU on exit
Vincent Bernat [Sun, 4 Jan 2015 17:24:29 +0000 (18:24 +0100)] 
lldp: send a shutdown LLDPDU on exit

With the previous commit, it is now easy to send a shutdown LLPDU when
exiting lldpd. Let's do that.

9 years agolldp: when MSAP changes, send a shutdown LLPDU
Vincent Bernat [Sun, 4 Jan 2015 17:13:23 +0000 (18:13 +0100)] 
lldp: when MSAP changes, send a shutdown LLPDU

Chassis ID and port ID are not supposed to change. However, it is
possible for the port ID to change (for example, if the port name
changes or if the MAC addresses change). Since they should be constant,
we "fix" that by sending a shutdown LLPDU before any broadcasting any
change.

As a provision, this also applies to chassis ID even if it is currently
not possible for it to be changed.

9 years agomarshal: don't marshal previous port value
Vincent Bernat [Sat, 3 Jan 2015 16:31:59 +0000 (17:31 +0100)] 
marshal: don't marshal previous port value

It is only used by the daemon.

9 years agotravis: don't compile embedded libevent + clang on OSX
Vincent Bernat [Tue, 30 Dec 2014 18:37:33 +0000 (19:37 +0100)] 
travis: don't compile embedded libevent + clang on OSX

We already try with Linux, that should be enough.

9 years agotravis: don't fail on unused functions (second try)
Vincent Bernat [Tue, 30 Dec 2014 16:19:33 +0000 (17:19 +0100)] 
travis: don't fail on unused functions (second try)

9 years agotravis: don't fail on unused functions
Vincent Bernat [Tue, 30 Dec 2014 14:59:35 +0000 (15:59 +0100)] 
travis: don't fail on unused functions

There are some of them in embedded libevent.

9 years agotravis: don't allow any warning or error
Vincent Bernat [Tue, 30 Dec 2014 13:34:17 +0000 (14:34 +0100)] 
travis: don't allow any warning or error

9 years agoversion: prepare 0.7.13 release 0.7.13
Vincent Bernat [Tue, 30 Dec 2014 13:11:49 +0000 (14:11 +0100)] 
version: prepare 0.7.13 release

9 years agoconfigure: let define pkg-config directory with `--with-pkgconfigdir`
Vincent Bernat [Mon, 29 Dec 2014 21:42:56 +0000 (22:42 +0100)] 
configure: let define pkg-config directory with `--with-pkgconfigdir`

This needs a recent version of pkg.m4. However, we provide a fallback if
not present.

Closes: #87
9 years agoman: `-I` option and the like also affect sending
Vincent Bernat [Mon, 15 Dec 2014 07:54:25 +0000 (08:54 +0100)] 
man: `-I` option and the like also affect sending

Instead of using `listen` to describe the `-I` option, specify that it
also used to decide which interfaces LLDP will be enabled on, both for
listening and sending.

9 years agolldp: fix display of unknown organizational ID
Vincent Bernat [Wed, 10 Dec 2014 16:09:30 +0000 (17:09 +0100)] 
lldp: fix display of unknown organizational ID

Because it was stored in a signed char array, it was incorrectly
displayed with the "%x" formatter. Store it into an unsigned char array.

9 years agolldpd: don't rely on a checksum to detect a port change
Vincent Bernat [Sat, 6 Dec 2014 23:05:53 +0000 (00:05 +0100)] 
lldpd: don't rely on a checksum to detect a port change

Instead, just compare the serialized copies. This is more reliable than
a checksum and also (a bit) faster.

9 years agolldpd: use a macro to define offset of permanent port info
Vincent Bernat [Sat, 6 Dec 2014 22:48:47 +0000 (23:48 +0100)] 
lldpd: use a macro to define offset of permanent port info

9 years agoNEWS: add an entry for the latest commit
Vincent Bernat [Fri, 5 Dec 2014 06:59:49 +0000 (07:59 +0100)] 
NEWS: add an entry for the latest commit

9 years agolldpd: fix coding style in latest commit
Vincent Bernat [Thu, 4 Dec 2014 22:15:46 +0000 (23:15 +0100)] 
lldpd: fix coding style in latest commit

9 years agoMerge pull request #84 from IcyMetric/master
Vincent Bernat [Thu, 4 Dec 2014 22:13:39 +0000 (23:13 +0100)] 
Merge pull request #84 from IcyMetric/master

Allow setting control socket on CLI

9 years agoAllow setting control socket on CLI 84/head
Robert Long [Thu, 4 Dec 2014 21:35:15 +0000 (13:35 -0800)] 
Allow setting control socket on CLI

9 years agolldpd: decrease probability of collisions on port checksums
Vincent Bernat [Thu, 4 Dec 2014 00:02:29 +0000 (01:02 +0100)] 
lldpd: decrease probability of collisions on port checksums

Instead of a 16-bit checksum, we use two 16-bit checkums, one for each
half of the serialized port. We now need more than 70000 ports to get a
50% chance of collision while we previously needed only 300 ports.

9 years agolldpd: decrease probability of collisions on port checksums
Vincent Bernat [Wed, 3 Dec 2014 23:56:51 +0000 (00:56 +0100)] 
lldpd: decrease probability of collisions on port checksums

Instead of wasting a whole bit (getting 2**15 valid values), just waste
one special value (2**16-1 valid values).

9 years agolldpd: really ensure that port checksum can never be 0
Vincent Bernat [Wed, 3 Dec 2014 21:28:03 +0000 (22:28 +0100)] 
lldpd: really ensure that port checksum can never be 0

9 years agolldpd: fix timer initialization when checksum is 0
Vincent Bernat [Wed, 3 Dec 2014 21:05:34 +0000 (22:05 +0100)] 
lldpd: fix timer initialization when checksum is 0

If the checksum computed over the port happens to be 0, the LLDPDU is
never scheduled for emission on this port. We ensure that a computed
checksum is never 0. If two different ports happen to have the same
checksum, we consider it unlikely enough to bear with the fact that the
timer will not be reset in this case.

9 years agomarshal: ensure we correctly handle signed result from serialization
Vincent Bernat [Wed, 3 Dec 2014 20:55:31 +0000 (21:55 +0100)] 
marshal: ensure we correctly handle signed result from serialization

We must handle correctly `ssize_t`. Try to not cast this to another
type, let alone a non signed type.

9 years agoxml: check that libxml-2 is really usable
Vincent Bernat [Mon, 1 Dec 2014 23:27:03 +0000 (00:27 +0100)] 
xml: check that libxml-2 is really usable

9 years agosnmp: `agent_init()` won't modify AgentX string
Vincent Bernat [Mon, 1 Dec 2014 22:34:44 +0000 (23:34 +0100)] 
snmp: `agent_init()` won't modify AgentX string

This fixes another compiler warning.

9 years agolib: silent a warning about uninitialized value
Vincent Bernat [Mon, 1 Dec 2014 22:32:40 +0000 (23:32 +0100)] 
lib: silent a warning about uninitialized value

This is a false positive as the value was guarded by another
value. Nevertheless, let's please the compiler.

9 years agoredhat: do not install the chroot
Vincent Bernat [Sat, 22 Nov 2014 20:15:01 +0000 (21:15 +0100)] 
redhat: do not install the chroot

SuSE doesn't allow it anymore. This is not needed since lldpd will do
it at start.

9 years agoredhat: requires pkg-config to build devel package
Vincent Bernat [Sat, 22 Nov 2014 19:58:27 +0000 (20:58 +0100)] 
redhat: requires pkg-config to build devel package

This is not really needed but SuSE is a bit picky in their checks.

9 years agorelease: prepare release of 0.7.12 0.7.12
Vincent Bernat [Sat, 22 Nov 2014 19:54:19 +0000 (20:54 +0100)] 
release: prepare release of 0.7.12

9 years agolib: fix pkgconfig file substitutions
Vincent Bernat [Sun, 9 Nov 2014 13:47:31 +0000 (14:47 +0100)] 
lib: fix pkgconfig file substitutions

9 years agoclient: fix "update" command
Vincent Bernat [Thu, 6 Nov 2014 18:15:20 +0000 (19:15 +0100)] 
client: fix "update" command

Commit e4c51716848a639daf61eff3e96ad242af3e316b broke this command
because we were checking for `tx_hold` instead of `tx_interval`. Let's
fix that.

9 years agotravis: travis comes with autotools and friends already installed
Vincent Bernat [Tue, 4 Nov 2014 21:06:49 +0000 (22:06 +0100)] 
travis: travis comes with autotools and friends already installed

If they are not quite up-to-date, we get an error, so don't try to
install them.

9 years agodebian: update symbol versioning for incompatibility of `lldpctl_atom_set_str()`
Vincent Bernat [Tue, 4 Nov 2014 19:52:12 +0000 (20:52 +0100)] 
debian: update symbol versioning for incompatibility of `lldpctl_atom_set_str()`

9 years agolib: bump versioning
Vincent Bernat [Tue, 4 Nov 2014 19:51:00 +0000 (20:51 +0100)] 
lib: bump versioning

Even if the ABI stays the same, the ability to pass NULL is an interface
change (backward compatible). We don't want new versions of lldpcli to
interact with an old version of the library.

9 years agolib: make it safe to pass NULL to `lldpctl_atom_set_str()`
Vincent Bernat [Tue, 4 Nov 2014 19:49:15 +0000 (20:49 +0100)] 
lib: make it safe to pass NULL to `lldpctl_atom_set_str()`

Even if we don't allow such a thing.

9 years agolib: document the possibility of using NULL with `lldpctl_atom_set_str()`
Vincent Bernat [Tue, 4 Nov 2014 19:49:00 +0000 (20:49 +0100)] 
lib: document the possibility of using NULL with `lldpctl_atom_set_str()`

9 years agolldpcli: allow to unset patterns and system description/hostname
Vincent Bernat [Tue, 4 Nov 2014 19:35:10 +0000 (20:35 +0100)] 
lldpcli: allow to unset patterns and system description/hostname

9 years agolib: replace macro by a function for `_lldpctl_atom_set_str_config()`
Vincent Bernat [Tue, 4 Nov 2014 14:25:21 +0000 (15:25 +0100)] 
lib: replace macro by a function for `_lldpctl_atom_set_str_config()`

9 years agolib: factor out some code in `_lldpctl_atom_set_str_config()` in a macro
Vincent Bernat [Tue, 4 Nov 2014 14:08:59 +0000 (15:08 +0100)] 
lib: factor out some code in `_lldpctl_atom_set_str_config()` in a macro

9 years agoNEWS: add an entry about some flags not being persistent accross time
Vincent Bernat [Sun, 2 Nov 2014 17:16:10 +0000 (18:16 +0100)] 
NEWS: add an entry about some flags not being persistent accross time

See e4c51716848a639daf61eff3e96ad242af3e316b.

9 years agobuild: hide renaming of template-generated files
Vincent Bernat [Sun, 2 Nov 2014 17:12:53 +0000 (18:12 +0100)] 
build: hide renaming of template-generated files

9 years agolldpd: use strdup() on arguments that could be changed by lldpcli
Vincent Bernat [Sun, 2 Nov 2014 17:10:55 +0000 (18:10 +0100)] 
lldpd: use strdup() on arguments that could be changed by lldpcli

And add the appropriate "const" modifier for those that don't. The
compiler should warn us if we did something wrong.

9 years agoclient: fix configuration modification
Vincent Bernat [Sun, 2 Nov 2014 15:25:21 +0000 (16:25 +0100)] 
client: fix configuration modification

Handling of configuration change was messy. Whatever configuration item
needed to be updated, a whole lldpd_config structure was sent. The
daemon part was trying to guess what changed by assuming non-0 fields
need to be updated. However, when flags were added, the implementation
became inconsistent. Some flags used 1/2 for true/false, some others
kept 0/1. So, some flags were detected as changed while they were not.

Since we require to provide a current configuration before making any
change, we just copy the whole structure, modify what we want and send
it to the daemon. The daemon will then compare the new structure with
the old one to detect changes. Flags that were using 1/2 logic are now
just using 0/1 like others.