Use splay trees instead of AVL trees.

This commit is contained in:
Guus Sliepen 2007-05-18 10:05:26 +00:00
parent f02d3ed3e1
commit fb0cfccf7d
22 changed files with 125 additions and 125 deletions

View file

@ -28,7 +28,7 @@
#include <openssl/err.h>
#include <openssl/evp.h>
#include "avl_tree.h"
#include "splay_tree.h"
#include "conf.h"
#include "connection.h"
#include "device.h"
@ -609,7 +609,7 @@ bool setup_network_connections(void) {
close all open network connections
*/
void close_network_connections(void) {
avl_node_t *node, *next;
splay_node_t *node, *next;
connection_t *c;
char *envp[5];
int i;