binary-xml-forwarding-entry.h
1 
21 #ifndef NDN_BINARY_XML_FORWARDING_ENTRY_H
22 #define NDN_BINARY_XML_FORWARDING_ENTRY_H
23 
24 #include "../forwarding-entry.h"
25 #include "binary-xml-encoder.h"
26 #include "binary-xml-decoder.h"
27 
28 #ifdef __cplusplus
29 extern "C" {
30 #endif
31 
38 ndn_Error ndn_encodeBinaryXmlForwardingEntry(struct ndn_ForwardingEntry *forwardingEntry, struct ndn_BinaryXmlEncoder *encoder);
39 
46 ndn_Error ndn_decodeBinaryXmlForwardingEntry(struct ndn_ForwardingEntry *forwardingEntry, struct ndn_BinaryXmlDecoder *decoder);
47 
48 #ifdef __cplusplus
49 }
50 #endif
51 
52 #endif
An ndn_ForwardingEntry holds fields for a ForwardingEntry which is used to register a prefix with a h...
Definition: forwarding-entry.h:48
Copyright (C) 2013-2015 Regents of the University of California.
Definition: binary-xml-encoder.h:36
Copyright (C) 2013-2015 Regents of the University of California.
Definition: binary-xml-decoder.h:33