diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-03-09 13:05:06 +0100 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-03-09 13:05:06 +0100 |
commit | d68e4e5e540720d9b02e2062e3982f1c438eb1e0 (patch) | |
tree | 663da5a36693ab0785c7c48e45bd5cc139c80a85 /src/lib/da.c | |
parent | af8db503f46049fabaa793905f35bf0a2867744b (diff) | |
download | ouroboros-d68e4e5e540720d9b02e2062e3982f1c438eb1e0.tar.gz ouroboros-d68e4e5e540720d9b02e2062e3982f1c438eb1e0.zip |
irmd, lib: Replace stubs in irmd
This replaces the stubs in the irmd and calls the actual IPCP
operations from the library. It also calls the DIF Allocator API in
one of the operations.
Diffstat (limited to 'src/lib/da.c')
-rw-r--r-- | src/lib/da.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/lib/da.c b/src/lib/da.c new file mode 100644 index 00000000..e9888d9e --- /dev/null +++ b/src/lib/da.c @@ -0,0 +1,33 @@ +/* + * Ouroboros - Copyright (C) 2016 + * + * The API to instruct the DIF Allocator + * + * 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. + */ + +#include <ouroboros/da.h> + +rina_name_t * da_resolve_daf(char * daf_name) +{ + return NULL; +} + +char ** da_resolve_dap(rina_name_t * name) +{ + return NULL; +} |