Remove checkpoint tracing.
[oweals/tinc.git] / src / meta.c
index 27d2394a2d7d1877a960c0d08c1715d667fc5484..9c38fefb19e380d7c0a9bece05eb193ce6668699 100644 (file)
@@ -36,8 +36,6 @@ bool send_meta(connection_t *c, const char *buffer, int length) {
        int outlen;
        int result;
 
-       cp();
-
        if(!c) {
                logger(LOG_ERR, _("send_meta() called with NULL pointer!"));
                abort();
@@ -121,8 +119,6 @@ void broadcast_meta(connection_t *from, const char *buffer, int length) {
        avl_node_t *node;
        connection_t *c;
 
-       cp();
-
        for(node = connection_tree->head; node; node = node->next) {
                c = node->data;
 
@@ -137,8 +133,6 @@ bool receive_meta(connection_t *c) {
        bool decrypted = false;
        char inbuf[MAXBUFSIZE];
 
-       cp();
-
        /* Strategy:
           - Read as much as possible from the TCP socket in one go.
           - Decrypt it.