mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-30 08:32:05 +00:00
f268ee8795
global.h was one of the messiest files, it has accumulated tons of implicit dependencies and declares many globals that make almost all other file include it. It managed to silence a dependency loop between server.h and proxy.h by being well placed to pre-define the required structs, forcing struct proxy and struct server to be forward-declared in a significant number of files. It was split in to, one which is the global struct definition and the few macros and flags, and the rest containing the functions prototypes. The UNIX_MAX_PATH definition was moved to compat.h.
101 lines
3.1 KiB
C
101 lines
3.1 KiB
C
/*
|
|
* include/proto/cli.h
|
|
* This file contains definitions of some primitives to dedicated to
|
|
* statistics output.
|
|
*
|
|
* Copyright (C) 2000-2011 Willy Tarreau - w@1wt.eu
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation, version 2.1
|
|
* exclusively.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef _PROTO_CLI_H
|
|
#define _PROTO_CLI_H
|
|
|
|
#include <haproxy/global.h>
|
|
#include <types/applet.h>
|
|
#include <types/channel.h>
|
|
#include <types/cli.h>
|
|
#include <types/stream.h>
|
|
|
|
|
|
void cli_register_kw(struct cli_kw_list *kw_list);
|
|
|
|
int cli_has_level(struct appctx *appctx, int level);
|
|
|
|
int cli_parse_default(char **args, char *payload, struct appctx *appctx, void *private);
|
|
|
|
/* mworker proxy functions */
|
|
|
|
int mworker_cli_proxy_create();
|
|
int mworker_cli_proxy_new_listener(char *line);
|
|
int mworker_cli_sockpair_new(struct mworker_proc *mworker_proc, int proc);
|
|
void mworker_cli_proxy_stop();
|
|
|
|
/* proxy mode cli functions */
|
|
|
|
/* analyzers */
|
|
int pcli_wait_for_request(struct stream *s, struct channel *req, int an_bit);
|
|
int pcli_wait_for_response(struct stream *s, struct channel *rep, int an_bit);
|
|
|
|
/* updates the CLI's context to log <msg> at <severity> and returns 1. This is
|
|
* for use in CLI parsers to deal with quick response messages.
|
|
*/
|
|
static inline int cli_msg(struct appctx *appctx, int severity, const char *msg)
|
|
{
|
|
appctx->ctx.cli.severity = severity;
|
|
appctx->ctx.cli.msg = msg;
|
|
appctx->st0 = CLI_ST_PRINT;
|
|
return 1;
|
|
}
|
|
|
|
/* updates the CLI's context to log error message <err> and returns 1. The
|
|
* message will be logged at level LOG_ERR. This is for use in CLI parsers to
|
|
* deal with quick response messages.
|
|
*/
|
|
static inline int cli_err(struct appctx *appctx, const char *err)
|
|
{
|
|
appctx->ctx.cli.msg = err;
|
|
appctx->st0 = CLI_ST_PRINT_ERR;
|
|
return 1;
|
|
}
|
|
|
|
/* updates the CLI's context to log <msg> at <severity> and returns 1. The
|
|
* message must have been dynamically allocated and will be freed. This is
|
|
* for use in CLI parsers to deal with quick response messages.
|
|
*/
|
|
static inline int cli_dynmsg(struct appctx *appctx, int severity, char *msg)
|
|
{
|
|
appctx->ctx.cli.severity = severity;
|
|
appctx->ctx.cli.err = msg;
|
|
appctx->st0 = CLI_ST_PRINT_DYN;
|
|
return 1;
|
|
}
|
|
|
|
/* updates the CLI's context to log error message <err> and returns 1. The
|
|
* message must have been dynamically allocated and will be freed. The message
|
|
* will be logged at level LOG_ERR. This is for use in CLI parsers to deal with
|
|
* quick response messages.
|
|
*/
|
|
static inline int cli_dynerr(struct appctx *appctx, char *err)
|
|
{
|
|
appctx->ctx.cli.err = err;
|
|
appctx->st0 = CLI_ST_PRINT_FREE;
|
|
return 1;
|
|
}
|
|
|
|
|
|
#endif /* _PROTO_CLI_H */
|
|
|