Webserver+3d print

Dependents:   Nucleo

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers dhcpv6_debug.h Source File

dhcpv6_debug.h

Go to the documentation of this file.
00001 /**
00002  * @file dhcpv6_debug.h
00003  * @brief Data logging functions for debugging purpose (DHCPv6)
00004  *
00005  * @section License
00006  *
00007  * Copyright (C) 2010-2017 Oryx Embedded SARL. All rights reserved.
00008  *
00009  * This file is part of CycloneTCP Open.
00010  *
00011  * This program is free software; you can redistribute it and/or
00012  * modify it under the terms of the GNU General Public License
00013  * as published by the Free Software Foundation; either version 2
00014  * of the License, or (at your option) any later version.
00015  *
00016  * This program is distributed in the hope that it will be useful,
00017  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00018  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00019  * GNU General Public License for more details.
00020  *
00021  * You should have received a copy of the GNU General Public License
00022  * along with this program; if not, write to the Free Software Foundation,
00023  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
00024  *
00025  * @author Oryx Embedded SARL (www.oryx-embedded.com)
00026  * @version 1.7.6
00027  **/
00028 
00029 #ifndef _DHCPV6_DEBUG_H
00030 #define _DHCPV6_DEBUG_H
00031 
00032 //Dependencies
00033 #include "core/net.h"
00034 #include "dhcpv6/dhcpv6_common.h"
00035 #include "debug.h"
00036 
00037 //Check current trace level
00038 #if (DHCPV6_TRACE_LEVEL >= TRACE_LEVEL_DEBUG)
00039 
00040 //Related functions
00041 error_t dhcpv6DumpMessage(const void *message, size_t length);
00042 error_t dhcpv6DumpOptions(const uint8_t *options, size_t length, uint_t level);
00043 error_t dhcpv6DumpGenericOption(const Dhcpv6Option *option, uint_t level);
00044 error_t dhcpv6DumpClientIdOption(const Dhcpv6Option *option, uint_t level);
00045 error_t dhcpv6DumpServerIdOption(const Dhcpv6Option *option, uint_t level);
00046 error_t dhcpv6DumpIaNaOption(const Dhcpv6Option *option, uint_t level);
00047 error_t dhcpv6DumpIaTaOption(const Dhcpv6Option *option, uint_t level);
00048 error_t dhcpv6DumpIaAddrOption(const Dhcpv6Option *option, uint_t level);
00049 error_t dhcpv6DumpOroOption(const Dhcpv6Option *option, uint_t level);
00050 error_t dhcpv6DumpPreferenceOption(const Dhcpv6Option *option, uint_t level);
00051 error_t dhcpv6DumpElapsedTimeOption(const Dhcpv6Option *option, uint_t level);
00052 error_t dhcpv6DumpRelayMessageOption(const Dhcpv6Option *option, uint_t level);
00053 error_t dhcpv6DumpAuthOption(const Dhcpv6Option *option, uint_t level);
00054 error_t dhcpv6DumpServerUnicastOption(const Dhcpv6Option *option, uint_t level);
00055 error_t dhcpv6DumpStatusCodeOption(const Dhcpv6Option *option, uint_t level);
00056 error_t dhcpv6DumpRapidCommitOption(const Dhcpv6Option *option, uint_t level);
00057 error_t dhcpv6DumpUserClassOption(const Dhcpv6Option *option, uint_t level);
00058 error_t dhcpv6DumpVendorClassOption(const Dhcpv6Option *option, uint_t level);
00059 error_t dhcpv6DumpVendorSpecificInfoOption(const Dhcpv6Option *option, uint_t level);
00060 error_t dhcpv6DumpInterfaceIdOption(const Dhcpv6Option *option, uint_t level);
00061 error_t dhcpv6DumpReconfMessageOption(const Dhcpv6Option *option, uint_t level);
00062 error_t dhcpv6DumpReconfAcceptOption(const Dhcpv6Option *option, uint_t level);
00063 error_t dhcpv6DumpDnsServersOption(const Dhcpv6Option *option, uint_t level);
00064 error_t dhcpv6DumpDomainListOption(const Dhcpv6Option *option, uint_t level);
00065 
00066 #else
00067    #define dhcpv6DumpMessage(message, length)
00068 #endif
00069 
00070 #endif
00071