Remove checkpoint tracing.
[tinc] / src / connection.c
index 289c233..7c8cd0b 100644 (file)
@@ -38,8 +38,6 @@ static int connection_compare(const connection_t *a, const connection_t *b) {
 }
 
 void init_connections(void) {
-       cp();
-
        connection_tree = avl_alloc_tree((avl_compare_t) connection_compare, (avl_action_t) free_connection);
        broadcast = new_connection();
        broadcast->name = xstrdup(_("everyone"));
@@ -47,8 +45,6 @@ void init_connections(void) {
 }
 
 void exit_connections(void) {
-       cp();
-
        avl_delete_tree(connection_tree);
        free_connection(broadcast);
 }
@@ -56,8 +52,6 @@ void exit_connections(void) {
 connection_t *new_connection(void) {
        connection_t *c;
 
-       cp();
-
        c = xmalloc_and_zero(sizeof(connection_t));
 
        if(!c)
@@ -69,8 +63,6 @@ connection_t *new_connection(void) {
 }
 
 void free_connection(connection_t *c) {
-       cp();
-
        if(c->name)
                free(c->name);
 
@@ -112,14 +104,10 @@ void free_connection(connection_t *c) {
 }
 
 void connection_add(connection_t *c) {
-       cp();
-
        avl_insert(connection_tree, c);
 }
 
 void connection_del(connection_t *c) {
-       cp();
-
        avl_delete(connection_tree, c);
 }
 
@@ -127,8 +115,6 @@ void dump_connections(void) {
        avl_node_t *node;
        connection_t *c;
 
-       cp();
-
        logger(LOG_DEBUG, _("Connections:"));
 
        for(node = connection_tree->head; node; node = node->next) {
@@ -145,8 +131,6 @@ bool read_connection_config(connection_t *c) {
        char *fname;
        int x;
 
-       cp();
-
        xasprintf(&fname, "%s/hosts/%s", confbase, c->name);
        x = read_config_file(c->config_tree, fname);
        free(fname);