circu.js
    Preparing search index...

    Namespace CModuleUDP

    UDP module - UDP socket operations

    const udp = import.meta.use('udp');

    const sock = await udp.create();
    sock.bind({ ip: '0.0.0.0', port: 12345 });

    const buffer = new Uint8Array(1024);
    const { nread, addr } = await sock.recv(buffer);

    Interfaces

    UDP

    Variables

    UDP_IPV6ONLY
    UDP_REUSEADDR

    Functions

    create