This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/mbcico/callstat.h
2002-03-03 20:40:03 +00:00

30 lines
432 B
C

/* $Id$ */
#ifndef CALLSTAT_H
#define CALLSTAT_H
#define ST_PORTOK 0
#define ST_PORTERR 1
#define ST_NOCONN 2
#define ST_MDMERR 3
#define ST_LOCKED 4
#define ST_LOOKUP 6
#define ST_NOCALL7 7
#define ST_NOCALL8 8
#define ST_NOPORT 9
#define ST_NOTZMH 10
#define ST_SESSION 30
typedef struct _callstat {
time_t trytime;
int tryno;
int trystat;
} callstat;
callstat *getstatus(faddr*);
void putstatus(faddr*,int,int);
#endif