예제 #1
0
int
vpi_mmap_interface_register(void)
{
    /* Register our module as handling type 'udp' */
    return vpi_interface_register("mmap", vpi_mmap_interface_create, NULL,
                                mmap_interface_docstring__);
}
예제 #2
0
int
vpi_bpp_interface_register(void)
{
    /*
     * We are just a preprocessor for UDP/TCP endpoints
     * used with the BigPatchPanel controller. 
     */
    return vpi_interface_register("bpp", NULL, 
                                vpi_bpp_interface_preprocess, 
                                bpp_interface_docstring__); 
}