TCPIP_IPV6_Put Function

C

bool TCPIP_IPV6_Put(
    IPV6_PACKET * pkt, 
    unsigned char v
);

Description

This function writes a character of data to a packet.

Preconditions

TCPIP_IPV6_Initialize() is required. TCPIP_IPV6_InterfaceIsReady should be true.

Parameters

ParametersDescription
pktThe packet.
vThe character.

Returns

  • True - If the character was written.

  • False - If the character was not written.

Remarks

None.