FreeCalypso > hg > freecalypso-tools
view rvinterf/l1filter/init.c @ 1010:1d144553a5d0
CHANGES: fc-host-tools-r21 about to be released
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Tue, 12 Dec 2023 07:45:56 +0000 |
parents | ea458ee48691 |
children |
line wrap: on
line source
/* * This module implements some init for l1trace-filter. */ #include <sys/types.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include "pktmux.h" #include "localsock.h" extern int sock; send_init_command(cmdpkt, cmdlen) u_char *cmdpkt; { u_char lenbuf[2]; lenbuf[0] = 0; lenbuf[1] = cmdlen; write(sock, lenbuf, 2); write(sock, cmdpkt, cmdlen); } init() { static u_char want_l1_mux[2] = {CLI2RVI_WANT_MUXPROTO, RVT_L1_HEADER}; localsock_prep_for_length_rx(); send_init_command(want_l1_mux, 2); }