Displaying 7 results from an estimated 7 matches for "avl_tree".
Did you mean:
adt_tree
2013 Nov 07
2
Segfaults on connection loss
...us
$2 = {pinged = 0, active = 0, connecting = 0, unused_termreq = 0, remove
= 1, timeout = 0, encryptout = 0, decryptin = 0, mst = 0, unused = 0}
One more:
Program terminated with signal 11, Segmentation fault.
#0 avl_search_closest_node (tree=0x10001, data=0x183f820,
result=0x7fffd5ba5e9c) at avl_tree.c:346
346 node = tree->root;
(gdb) bt
#0 avl_search_closest_node (tree=0x10001, data=0x183f820,
result=0x7fffd5ba5e9c) at avl_tree.c:346
#1 0x0000000000404ede in avl_search_node (tree=<optimized out>,
data=<optimized out>) at avl_tree.c:335
#2 0x0000000000405469 in a...
2007 May 21
1
Dev-Cpp
I have been trying to compile tinc on Dev-Cpp for some time. Is there anywhere that can point me to some hints or a howto? Ive been looking for a few days now. If I can do it, I'd be willing to write a how-to doc if it does not exist.
Im apparently missing system.h, pidfile.h, avl_tree.h, ipv6.h.
Thanks in advance
Dan
---------------------------------
Get the free Yahoo! toolbar and rest assured with the added security of spyware protection.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://brouwer.uvt.nl/pipermail/tinc-devel/attach...
2007 May 22
1
Almost working
...> I have been trying to compile tinc on Dev-Cpp for some time. Is there anywhere that can point me to some hints or a howto? Ive been looking for a few days now. If I can do it, I'd be willing to write a how-to doc if it does not exist.
>
> Im apparently missing system.h, pidfile.h, avl_tree.h, ipv6.h.
These files are in the lib/ directory.
I don't know about Dev-Cpp. You should be able to compile it in a
regular MinGW environment using just "./configure; make". Of course, you
might need to add extra options to ./configure to specify the location
of the zlib, LZO and Op...
2014 Nov 22
2
Tinc 1.0.24 build failed on OSX Mavericks
Hi,
I've got the following error when tried to compile tinc-1.0.24:
gcc -g -O2 -pie -L/opt/local/lib -o tincd avl_tree.o conf.o
connection.o dropin.o dummy_device.o edge.o event.o fake-getaddrinfo.o
fake-getnameinfo.o getopt.o getopt1.o graph.o list.o logger.o meta.o
multicast_device.o net.o net_packet.o net_setup.o net_socket.o netutl.o
node.o pidfile.o process.o protocol.o protocol_auth.o protocol_edge.o
pro...
2010 Sep 03
1
[PATCH] New '-o' option to configure server or hosts from command line
...line options */
+ result = !b->file - !a->file;
+ if (result)
+ return result;
+
result = a->line - b->line;
if(result)
return result;
else
- return strcmp(a->file, b->file);
+ return a->file ? strcmp(a->file, b->file) : 0;
}
void init_configuration(avl_tree_t ** config_tree) {
@@ -87,7 +94,7 @@ config_t *lookup_config(avl_tree_t *config_tree, char
*variable) {
config_t cfg, *found;
cfg.variable = variable;
- cfg.file = "";
+ cfg.file = NULL;
cfg.line = 0;
found = avl_search_closest_greater(config_tree, &cfg);
@@ -233,6 +24...
2003 Aug 04
1
OpenBSD 3.2 and Release 1
...c-up
U tinc/doc/sample-config/tinc.conf
cvs server: Updating tinc/doc/sample-config/hosts
U tinc/doc/sample-config/hosts/alpha
U tinc/doc/sample-config/hosts/beta
cvs server: Updating tinc/intl
cvs server: Updating tinc/lib
U tinc/lib/.cvsignore
U tinc/lib/Makefile.am
U tinc/lib/alloca.c
U tinc/lib/avl_tree.c
U tinc/lib/avl_tree.h
U tinc/lib/dropin.c
U tinc/lib/dropin.h
U tinc/lib/ethernet.h
U tinc/lib/fake-gai-errnos.h
U tinc/lib/fake-getaddrinfo.c
U tinc/lib/fake-getaddrinfo.h
U tinc/lib/fake-getnameinfo.c
U tinc/lib/fake-getnameinfo.h
U tinc/lib/getopt.c
U tinc/lib/getopt.h
U tinc/lib/getopt1.c
U...
2004 Aug 06
0
[PATCH] Configurable privileges and chroot jail
...ving revision 1.14
diff -b -u -r1.14 icetypes.h
--- src/icetypes.h 2000/07/05 19:51:14 1.14
+++ src/icetypes.h 2001/04/24 01:32:57
@@ -265,6 +265,9 @@
char *logdir;
char *templatedir;
+ char* chroot_dir;
+ char* icecast_user;
+
/* Encoder stuff */
avl_tree *sources; /* Source array */
unsigned long int num_sources; /* Encoders connected */
Index: src/main.c
===================================================================
RCS file: /cvsroot/icecast/src/main.c,v
retrieving revision 1.18
diff -b -u -r1.18 main.c
--- src/main.c 2000/07/27 07:...