Skip to content
Snippets Groups Projects
Commit c45b524c authored by Lubos Slovak's avatar Lubos Slovak
Browse files

Added files for response and packet.

refs #143
parent 198706a2
Branches
Tags
No related merge requests found
......@@ -78,3 +78,6 @@ src/tests/dnslib/dnslib_zone_tests.c
src/dnslib/rrsig.h
src/dnslib/rrsig.c
src/other/tree.h
src/dnslib/response.h
src/dnslib/packet.h
src/dnslib/response.c
/*!
* \file packet.h
*
* \author Lubos Slovak <lubos.slovak@nic.cz>
*
* \brief Functions for manipulating and parsing raw data in DNS packets.
*
* \addtogroup dnslib
* @{
*/
#ifndef _CUTEDNS_DNSLIB_PACKET_H_
#define _CUTEDNS_DNSLIB_PACKET_H_
#endif /* _CUTEDNS_DNSLIB_PACKET_H_ */
/*! @} */
#include "response.h"
/*!
* \file response.h
*
* \author Lubos Slovak <lubos.slovak@nic.cz>
*
* \brief Structure for holding response data and metadata.
*
* This structure can be used to pass all data needed for response creation
* inside and between various processing functions of the application.
*
* \addtogroup dnslib
* @{
*/
#ifndef _CUTEDNS_DNSLIB_RESPONSE_H_
#define _CUTEDNS_DNSLIB_RESPONSE_H_
#endif /* _CUTEDNS_DNSLIB_RESPONSE_H_ */
/*! @} */
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment