New FIFO SupportThe functionality of the original FIFO server lives now in ctl module. So you need to load that module and configure it to listen on a fifo socket: loadmodule "/usr/local/lib/seri/modules/ctl.so" modparam("ctl", "fifo", "fifo:/tmp/ser_fifo") # clasic fifo We have a command line tool that can be used to send commands and receive replies from the server. You can use the tool to find out the list of available commands. The tool can only communicate with SERi over unix domain sockets, so you will also need to configure the ctl module to listen on a unix domain socket: modparam("ctl", "binrpc", "tcp:localhost:2046") Then you can run the command line tool: sercmd -s tcp:localhost:2046 ls and it will give you the list of all available commands. See: There is currently no description of command parameters |
Navigation |