ucspi-tcp6 1.13.02
ucspi-tcp6
Loading...
Searching...
No Matches
commands.h
Go to the documentation of this file.
1#ifndef COMMANDS_H
2#define COMMANDS_H
3
4struct commands {
5 char *verb;
6 void (*action)(char *);
7 void (*flush)(void);
8} ;
9
10extern int commands(buffer *,struct commands *);
11
12#endif
void(* action)(char *)
Definition: commands.h:6
char * verb
Definition: commands.h:5
void(* flush)(void)
Definition: commands.h:7