Fix: mismatch variable type (cluster_port).
This commit is contained in:
parent
0f20bfda6a
commit
84082b35b1
2 changed files with 7 additions and 1 deletions
6
debian/changelog
vendored
6
debian/changelog
vendored
|
|
@ -1,3 +1,9 @@
|
||||||
|
l2tpns (2.2.1.2fdn3.21) unstable; urgency=low
|
||||||
|
|
||||||
|
* Fix: mismatch variable type (cluster_port).
|
||||||
|
|
||||||
|
-- Fernando Alves <fendo@sameswifi.fr> Sat, 27 May 2017 11:09:54 +0200
|
||||||
|
|
||||||
l2tpns (2.2.1.2fdn3.20) unstable; urgency=low
|
l2tpns (2.2.1.2fdn3.20) unstable; urgency=low
|
||||||
|
|
||||||
* Add cluster_port parameter for Multiple clusters (See clustering section for more informationc).
|
* Add cluster_port parameter for Multiple clusters (See clustering section for more informationc).
|
||||||
|
|
|
||||||
2
l2tpns.h
2
l2tpns.h
|
|
@ -731,7 +731,7 @@ typedef struct
|
||||||
char epdis_addr[20]; // MP Endpoint Discriminator address
|
char epdis_addr[20]; // MP Endpoint Discriminator address
|
||||||
|
|
||||||
in_addr_t cluster_address; // Multicast address of cluster.
|
in_addr_t cluster_address; // Multicast address of cluster.
|
||||||
unsigned short cluster_port; // UDP port of cluster.
|
int cluster_port; // UDP port of cluster.
|
||||||
// Send to this address to have everyone hear.
|
// Send to this address to have everyone hear.
|
||||||
char cluster_interface[64]; // Which interface to listen for multicast on.
|
char cluster_interface[64]; // Which interface to listen for multicast on.
|
||||||
int cluster_iam_master; // Are we the cluster master???
|
int cluster_iam_master; // Are we the cluster master???
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue