From 85b3822a4cc121dcb3d87937c2a44395d8887ae3 Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Fri, 2 Dec 2016 15:22:52 +0100 Subject: ipcpd: normal: Provide directory for registered names This adds a directory to the normal IPCP that maps names on IPCP addresses. --- src/ipcpd/normal/dir.h | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 src/ipcpd/normal/dir.h (limited to 'src/ipcpd/normal/dir.h') diff --git a/src/ipcpd/normal/dir.h b/src/ipcpd/normal/dir.h new file mode 100644 index 00000000..9b27feb4 --- /dev/null +++ b/src/ipcpd/normal/dir.h @@ -0,0 +1,38 @@ +/* + * Ouroboros - Copyright (C) 2016 + * + * DIF directory + * + * Sander Vrijders + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that 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. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + +#ifndef OUROBOROS_IPCPD_NORMAL_DIR_H +#define OUROBOROS_IPCPD_NORMAL_DIR_H + +#define RO_DIR "directory" + +int dir_init(void); + +int dir_fini(void); + +int dir_name_reg(char * name); + +int dir_name_unreg(char * name); + +int dir_name_query(char * name); + +#endif /* OUROBOROS_IPCPD_NORMAL_DIR_H */ -- cgit v1.2.3