Changeset 4477 for trunk/varnish-cache/include
- Timestamp:
- 01/21/10 11:26:39 (6 months ago)
- Location:
- trunk/varnish-cache/include
- Files:
-
- 3 modified
-
cli_common.h (modified) (2 diffs)
-
cli_priv.h (modified) (2 diffs)
-
cli_serve.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/varnish-cache/include/cli_common.h
r4474 r4477 31 31 32 32 struct vlu; 33 struct cls; 33 34 34 35 struct cli { … … 42 43 char *ident; 43 44 struct vlu *vlu; 45 struct cls *cls; 44 46 }; 45 47 -
trunk/varnish-cache/include/cli_priv.h
r4474 r4477 47 47 unsigned minarg; 48 48 unsigned maxarg; 49 char flags[4]; 49 50 50 51 /* Dispatch information */ … … 57 58 void cli_quote(struct cli *cli, const char *str); 58 59 void cli_result(struct cli *cli, unsigned r); 59 60 /* From libvarnish/cli.c */61 cli_func_t cli_func_help;62 cli_func_t cli_func_ping;63 struct cli_proto *cli_concat(struct cli_proto *, struct cli_proto *); -
trunk/varnish-cache/include/cli_serve.h
r4474 r4477 41 41 void CLS_Destroy(struct cls **); 42 42 43 /* From libvarnish/cli.c */ 44 cli_func_t CLS_func_close; 45 cli_func_t CLS_func_help; 46 cli_func_t CLS_func_ping; 47
