Is it possible to set udp packet to fixed size

Hi all,
I am using following function to send udp packet to client.
nwrite = wip_writeOpts(udp_server_id, buffered_data, buffered_len,
WIP_COPT_PEER_STRADDR, peer_str_addr, WIP_COPT_PEER_PORT,
peer_port,WIP_COPT_DONTFRAG, true,
WIP_COPT_END);

, is is possible to send each frame in fixed size, say 60 bytes, if use wireshark to check. First line should be look like
Frame 1: 60 bytes on wire (480 bits), 60 bytes captured (480 bits) on interface 0

thanks

Hi,

While creating UDP socket, we can define the option WIP_COPT_SND_BUFSIZE and set it to 60.