batmand: Switch to HTTPS version of links
Commit Message
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Cc: elektra <onelektra@gmx.net>
---
CHANGELOG | 2 +-
INSTALL | 6 +++---
bitarray.c | 4 ++--
man/batmand.8 | 2 +-
originator.c | 2 +-
posix/tunnel.c | 2 +-
6 files changed, 9 insertions(+), 9 deletions(-)
Comments
Hi Sven -
commited. Thank you!
Cheers,
Elektra
@@ -1,3 +1,3 @@
For a reasonable up-to-date CHANGELOG visit:
-http://git.open-mesh.org/?p=batmand.git;a=shortlog
+https://git.open-mesh.org/batmand.git
@@ -39,12 +39,12 @@ Compiling
You don't necessarily need to compile. May be your distribution or our
download store offers precompiled packages. Check
-http://www.open-mesh.org/wiki/open-mesh/Download to get an overview.
+https://www.open-mesh.org/projects/open-mesh/wiki/Download to get an overview.
Download and compile the latest stable sources from the download section
-http://www.open-mesh.org/wiki/open-mesh/Download by executing eg.:
+https://www.open-mesh.org/projects/open-mesh/wiki/Download by executing eg.:
-$ wget http://downloads.open-mesh.org/batman/stable/sources/batmand/batmand-0.3.2.tar.gz
+$ wget https://downloads.open-mesh.org/batman/stable/sources/batmand/batmand-0.3.2.tar.gz
$ tar xzvf batmand-0.3.2.tar.gz
$ cd batman-0.3.2
$ make
@@ -173,7 +173,7 @@ int bit_packet_count( TYPE_OF_WORD *seq_bits ) {
while (word) {
- word &= word-1; /* see http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetKernighan */
+ word &= word-1; /* see https://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetKernighan */
hamming++;
}
@@ -190,7 +190,7 @@ uint8_t bit_count( int32_t to_count ) {
while ( to_count ) {
- to_count &= to_count-1; /* see http://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetKernighan */
+ to_count &= to_count-1; /* see https://graphics.stanford.edu/~seander/bithacks.html#CountBitsSetKernighan */
hamming++;
}
@@ -28,7 +28,7 @@ batmand \- better approach to mobile ad\(hyhoc networking
.br
.SH DESCRIPTION
.B B.A.T.M.A.N
-means better approach to mobile ad\(hyhoc networking, this is a new routing protocol for multi\(hyhop ad\(hyhoc mesh networks. Go to http://www.open\-mesh.org/ to get more information.
+means better approach to mobile ad\(hyhoc networking, this is a new routing protocol for multi\(hyhop ad\(hyhoc mesh networks. Go to https://www.open\-mesh.org/ to get more information.
.PP
The following document will explain how to use the \fBbatman daemon\fP.
.PP
@@ -74,7 +74,7 @@ int compare_orig( void *data1, void *data2 )
/* hashfunction to choose an entry in a hash table of given size */
-/* hash algorithm from http://en.wikipedia.org/wiki/Hash_table */
+/* hash algorithm from https://en.wikipedia.org/wiki/Hash_table */
int choose_orig( void *data, int32_t size ) {
unsigned char *key= data;
@@ -507,7 +507,7 @@ static int compare_vip(void *data1, void *data2)
}
/* hashfunction to choose an entry in a hash table of given size */
-/* hash algorithm from http://en.wikipedia.org/wiki/Hash_table */
+/* hash algorithm from https://en.wikipedia.org/wiki/Hash_table */
static int choose_wip(void *data, int32_t size)
{
unsigned char *key= data;