1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
/*****************************************************************************
* Written by Chris Dunlap <cdunlap@llnl.gov>.
* Copyright (C) 2007-2022 Lawrence Livermore National Security, LLC.
* Copyright (C) 2001-2007 The Regents of the University of California.
* UCRL-CODE-2002-009.
*
* This file is part of ConMan: The Console Manager.
* For details, see <https://dun.github.io/conman/>.
*
* ConMan is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free
* Software Foundation, either version 3 of the License, or (at your option)
* any later version.
*
* ConMan 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 General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with ConMan. If not, see <http://www.gnu.org/licenses/>.
*****************************************************************************/
#ifndef _CLIENT_H
#define _CLIENT_H
#include <termios.h>
#include "common.h"
typedef struct client_conf {
char *prog; /* name of client program */
req_t *req; /* client request info */
int escapeChar; /* char to issue client escape seq */
char *log; /* connection logfile name */
int logd; /* connection logfile descriptor */
int errnum; /* error number from issuing command */
char *errmsg; /* error msg from issuing command */
struct termios tty; /* saved "cooked" terminal mode */
unsigned enableVerbose:1; /* true if verbose output requested */
unsigned isClosedByClient:1; /* true if socket closed by client */
} client_conf_t;
/*******************\
** client-conf.c **
\*******************/
client_conf_t * create_client_conf(void);
void destroy_client_conf(client_conf_t *conf);
void process_client_env_vars(client_conf_t *conf);
void process_client_cmd_line(int argc, char *argv[], client_conf_t *conf);
void open_client_log(client_conf_t *conf);
void close_client_log(client_conf_t *conf);
/*******************\
** client-sock.c **
\*******************/
int connect_to_server(client_conf_t *conf);
int send_greeting(client_conf_t *conf);
int send_req(client_conf_t *conf);
int recv_rsp(client_conf_t *conf);
void display_error(client_conf_t *conf);
void display_data(client_conf_t *conf, int fd);
void display_consoles(client_conf_t *conf, int fd);
/******************\
** client-tty.c **
\******************/
void connect_console(client_conf_t *conf);
char * write_esc_char(char c, char *dst);
#endif /* !_CLIENT_H */
|