diff options
| author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-12-02 15:22:52 +0100 | 
|---|---|---|
| committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-12-02 17:45:24 +0100 | 
| commit | 85b3822a4cc121dcb3d87937c2a44395d8887ae3 (patch) | |
| tree | 941b20c216e21bceb8741704debfe6efc07f2c2f /src/ipcpd/normal/dir.h | |
| parent | 552f2eb19f04968c0c5ebc7b16f6aa1cb61b6b29 (diff) | |
| download | ouroboros-85b3822a4cc121dcb3d87937c2a44395d8887ae3.tar.gz ouroboros-85b3822a4cc121dcb3d87937c2a44395d8887ae3.zip | |
ipcpd: normal: Provide directory for registered names
This adds a directory to the normal IPCP that maps names on IPCP
addresses.
Diffstat (limited to 'src/ipcpd/normal/dir.h')
| -rw-r--r-- | src/ipcpd/normal/dir.h | 38 | 
1 files changed, 38 insertions, 0 deletions
| 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 <sander.vrijders@intec.ugent.be> + * + * 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 */ | 
