File:  [ELWIX - Embedded LightWeight unIX -] / libaitcli / inc / defs.h
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Fri Jun 4 11:32:47 2010 UTC (14 years, 2 months ago) by misho
Branches: MAIN
CVS tags: cli2_0, HEAD, CLI1_0
prepare to tag

/*************************************************************************
* (C) 2010 AITNET ltd - Sofia/Bulgaria - <misho@aitbg.com>
*  by Michael Pounov <misho@openbsd-bg.org>
*
* $Author: misho $
* $Id: defs.h,v 1.2 2010/06/04 11:32:47 misho Exp $
*
*************************************************************************/
#ifndef __DEFS_H
#define __DEFS_H


#define STRSIZ			256

#define MAX_PROMPT_ITEMS	20

#define DEFAULT_SOCK_TIMEOUT	60

#define LOGERR	{ \
			cli_Errno = errno; \
			strlcpy(cli_Error, strerror(errno), STRSIZ); \
		}


extern int cli_Errno;
extern char cli_Error[];

inline void cli_SetErr(int eno, char *estr, ...);


#endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>