2 * Copyright (C) 1997-2006 Andre Noll <maan@systemlinux.org>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
19 /** \file client.h common client functions and exported symbols from client_common.c */
21 #include <openssl/rc4.h>
26 CL_RECEIVED_CHALLENGE
,
31 CL_RECEIVING_SERVER_OUTPUT
34 #define CLIENT_BUFSIZE 8192
36 struct private_client_data
{
39 struct client_args_info conf
;
47 char buf
[CLIENT_BUFSIZE
];
51 long unsigned challenge_nr
;
52 /* only used if stdin gets sent to para_server */
58 int client_open(struct private_client_data
*pcd
);
59 void client_close(struct private_client_data
*pcd
);
60 int client_parse_config(int argc
, char *argv
[],
61 struct private_client_data
**pcd_ptr
);
62 void client_pre_select(struct sched
*s
, struct task
*t
);
63 void client_post_select(struct sched
*s
, struct task
*t
);