Function Prototypes:tt6DhcpAdvOptCbFunc

Jump to: navigation, search

Table of Contents >> Optional Protocols >> DHCPv6


#include <trsocket.h>


void tt6DhcpNotifyFunc (
ttUserInterface interfaceHandle,
ttUser32Bit option,
ttUserGenericUnionPtr optionDataPtr
);


Function Description

This is the type definition for the DHCPv6 server Advertise message option data callback function. A function of this type may be registered with tf6DhcpUserRegisterAdvOptCb(). This allows the user to be given the value of options included in the server's Advertise message before the client sends the first Request message to the server.


Parameters

  • interfaceHandle
    Handle to the interface on which the Advertise message was received.
  • option
    The option for which the callback is being called. See option list below.
  • optionDataPtr
    A generic union structure containing or pointing to the data for the specified option.


Options

  • TM_6_DHCP_CB_OPT_FQDN
    FQDN option

Data Stored In: (tt6UserFqdnDataPtr)optionDataPtr->genVoidParmPtr


Table of Contents >> Programmer's Reference >> tf6UseDhcp