aboutsummaryrefslogtreecommitdiffstats
path: root/codi/codi_list.h
diff options
context:
space:
mode:
Diffstat (limited to 'codi/codi_list.h')
-rw-r--r--codi/codi_list.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/codi/codi_list.h b/codi/codi_list.h
deleted file mode 100644
index 4ce5301..0000000
--- a/codi/codi_list.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * Copyright (C) 2016 Intel Corporation
- *
- * Author: Todor Minchev <todor.minchev@linux.intel.com>
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms and conditions of the GNU General Public License,
- * version 2, or (at your option) any later version, as published by
- * the Free Software Foundation.
- *
- * This program is distributed in the hope it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- * more details.
- */
-
-#ifndef CODI_LIST_H
-#define CODI_LIST_H
-
-typedef struct list_node{
- char *id;
- char *ip;
- char *port;
- char *date;
- struct list_node *next;
-} turff_node;
-
-turff_node *find_turff_node(char *id);
-void add_turff_node(char *id, char *ip, char *port, char *date);
-void return_turff_nodes();
-void free_turff_nodes_list();
-
-#endif