![]() |
Network Wizard for VHDL Test Benches
|
Functions | |
t_slv_arr | f_udpv6_create_pkt ( ipv6_header: in t_ipv6_header udp_header: in t_udp_header payload: in t_slv_arr routing_header: in t_extension_header C_DEFAULT_EXT_HEADER get_length: in boolean false ) |
t_slv_arr | f_udpv6_create_pkt ( ipv6_header: in t_ipv6_header udp_header: in t_udp_header payload: in t_slv_arr routing_header: in t_extension_header C_DEFAULT_EXT_HEADER ) |
Create UDP for IPv6 packet. | |
natural | f_udpv6_create_pkt_len ( ipv6_header: in t_ipv6_header udp_header: in t_udp_header payload: in t_slv_arr routing_header: in t_extension_header C_DEFAULT_EXT_HEADER ) |
Return length of UDP packet. | |
t_udp_header | f_udpv6_get_header ( udp_pkt: in t_slv_arr ) |
Get UDP header. | |
t_slv_arr | f_udpv6_get_payload ( udp_pkt: in t_slv_arr , get_length: in boolean false ) |
t_slv_arr | f_udpv6_get_payload ( udp_pkt: in t_slv_arr ) |
Get UDP payload. | |
natural | f_udpv6_get_payload_len ( udp_pkt: in t_slv_arr ) |
Get UDP payload length. | |
boolean | f_udpv6_chksum_ok ( ipv6_header: in t_ipv6_header udp_pkt: in t_slv_arr routing_header: in t_extension_header C_DEFAULT_EXT_HEADER ) |
Check UDP checksum. |
|
Function |
Create UDP for IPv6 packet.
ipv6_header | IPv6 header (required for checksum calculation) |
udp_header | UDP header |
payload | UDP payload |
routing_header | IPv6 routing extension header (default none) |
Create UDP for IPv6 packet. Payload must be 8bit data array. A pseudo-header is generated from the IPv6 header which is included in the checksum calculation. If the IPv6 packet contains a routing extension header, it must be included here as the pseudo header destination address is the final destination.
Example use
|
Function |
Return length of UDP packet.
ipv6_header | IPv6 header (required for checksum calculation) |
udp_header | UDP header |
payload | UDP payload |
routing_header | IPv6 routing extension header (default none) |
Return the length of the created UDP packet.
Example use
|
Function |
Get UDP header.
udp_pkt | UDP packet (8bit) |
Extract UDP header from UDP packet.
Example use
|
Function |
Get UDP payload.
udp_pkt | UDP packet (8bit) |
Extract UDP payload from UDP packet.
Example use
|
Function |
Get UDP payload length.
udp_pkt | UDP packet (8bit) |
Get UDP payload length from UDP packet.
Example use
|
Function |
Check UDP checksum.
ipv6_header | IPv6 header |
udp_pkt | UDP packet (8bit) |
routing_header | IPv6 routing extension header (default none) |
Check checksum of UDP packet. The IPv6 header is required for the pseudo-header fields. If the IPv6 packet contains a routing extension header, it must be included here as the pseudo header destination address is the final destination.
Example use