blob: a5568d4b0a5b5abc5790a41ed4bd08a366ffc372 [file] [log] [blame]
Jeff Thompson76317aa2013-06-25 19:11:48 -07001/*
2 * Author: Jeff Thompson
3 *
4 * BSD license, See the LICENSE file for more information.
5 */
6
7#include "BinaryXMLStructureDecoder.h"
8
9void ndn_BinaryXMLStructureDecoder_init(struct ndn_BinaryXMLStructureDecoder *self) {
10 self->gotElementEnd = 0;
11 self->offset = 0;
12 self->level = 0;
13 self->state = ndn_BinaryXMLStructureDecoder_READ_HEADER_OR_CLOSE;
14 self->headerLength = 0;
15 self->useHeaderBuffer = 0;
16 self->nBytesToRead = 0;
17}