191 lines
4.4 KiB
C
191 lines
4.4 KiB
C
/* $NetBSD: supextern.h,v 1.18 2002/07/10 21:28:13 wiz Exp $ */
|
|
|
|
struct stat;
|
|
|
|
/* atoo.c */
|
|
unsigned int atoo(char *);
|
|
|
|
/* errmsg.c */
|
|
const char *errmsg(int);
|
|
|
|
/* expand.c */
|
|
int expand(char *, char **, int);
|
|
|
|
/* ffilecopy.c */
|
|
int ffilecopy(FILE *, FILE *);
|
|
|
|
/* filecopy.c */
|
|
int filecopy(int, int );
|
|
|
|
/* log.c */
|
|
void logopen(char *);
|
|
void logquit(int, char *, ...)
|
|
__attribute__((__format__(__printf__, 2, 3)));
|
|
void logerr(char *, ...)
|
|
__attribute__((__format__(__printf__, 1, 2))) ;
|
|
void loginfo(char *, ...)
|
|
__attribute__((__format__(__printf__, 1, 2)));
|
|
#ifdef LIBWRAP
|
|
void logdeny(char *, ...)
|
|
__attribute__((__format__(__printf__, 1, 2)));
|
|
void logallow(char *, ...)
|
|
__attribute__((__format__(__printf__, 1, 2)));
|
|
#endif
|
|
|
|
/* netcryptvoid.c */
|
|
int netcrypt(char *);
|
|
int getcryptbuf(int);
|
|
void decode(char *, char *, int);
|
|
void encode(char *, char *, int);
|
|
|
|
/* nxtarg.c */
|
|
char *nxtarg(char **, char *);
|
|
|
|
/* path.c */
|
|
void path(char *, char *, char *);
|
|
|
|
/* quit.c */
|
|
void quit(int, char *, ...)
|
|
__attribute__((__format__(__printf__, 2, 3)));
|
|
|
|
/* read_line.c */
|
|
char *read_line(FILE *, size_t *, size_t *, const char[3], int);
|
|
|
|
/* run.c */
|
|
int run(char *, ...);
|
|
int runv(char *, char **);
|
|
int runp(char *, ...);
|
|
int runvp(char *, char **);
|
|
int runio(char *const[], const char *, const char *, const char *);
|
|
int runiofd(char *const[], const int, const int, const int);
|
|
|
|
/* salloc.c */
|
|
char *salloc(const char *);
|
|
|
|
/* scan.c */
|
|
int getrelease(char *);
|
|
void makescanlists(void);
|
|
void getscanlists(void);
|
|
void cdprefix(char *);
|
|
|
|
/* scm.c */
|
|
int servicesetup(char *, int);
|
|
int service(void);
|
|
int serviceprep(void);
|
|
int servicekill(void);
|
|
int serviceend(void);
|
|
int dobackoff(int *, int *);
|
|
int request(char *, char *, int *);
|
|
int requestend(void);
|
|
char *remotehost(void);
|
|
int thishost(char *);
|
|
int samehost(void);
|
|
int matchhost(char *);
|
|
int scmerr(int, char *, ...)
|
|
__attribute__((__format__(__printf__, 2, 3)));
|
|
int byteswap(int);
|
|
|
|
/* scmio.c */
|
|
int writemsg(int);
|
|
int writemend(void);
|
|
int writeint(int);
|
|
int writestring(char *);
|
|
int writefile(int);
|
|
int writemnull(int);
|
|
int writemint(int, int );
|
|
int writemstr(int, char *);
|
|
int prereadcount(int *);
|
|
int readflush(void);
|
|
int readmsg(int);
|
|
int readmend(void);
|
|
int readskip(void);
|
|
int readint(int *);
|
|
int readstring(char **);
|
|
int readfile(int);
|
|
int readmnull(int);
|
|
int readmint(int, int *);
|
|
int readmstr(int, char **);
|
|
void crosspatch(void);
|
|
|
|
/* skipto.c */
|
|
char *skipto(char *, char *);
|
|
char *skipover(char *, char *);
|
|
|
|
/* stree.c */
|
|
void Tfree(TREE **);
|
|
TREE *Tinsert(TREE **, char *, int);
|
|
TREE *Tsearch(TREE *, char *);
|
|
TREE *Tlookup(TREE *, char *);
|
|
int Trprocess(TREE *, int (*)(TREE *, void *), void *);
|
|
int Tprocess(TREE *, int (*)(TREE *, void *), void *);
|
|
void Tprint(TREE *, char *);
|
|
|
|
/* supcmeat.c */
|
|
int getonehost(TREE *, void *);
|
|
TREE *getcollhost(int *, int *, long *, int *);
|
|
void getcoll(void);
|
|
int signon(TREE *, int, int *);
|
|
int setup(TREE *);
|
|
void suplogin(void);
|
|
void listfiles(void);
|
|
void recvfiles(void);
|
|
int prepare(char *, int, int *, struct stat *);
|
|
int recvdir(TREE *, int, struct stat *);
|
|
int recvsym(TREE *, int, struct stat *);
|
|
int recvreg(TREE *, int, struct stat *);
|
|
int copyfile(char *, char *);
|
|
void finishup(int);
|
|
void done(int, char *, ...)
|
|
__attribute__((__format__(__printf__, 2, 3)));
|
|
void goaway(char *, ...)
|
|
__attribute__((__format__(__printf__, 1, 2)));
|
|
|
|
/* supcmisc.c */
|
|
void prtime(void);
|
|
int establishdir(char *);
|
|
int makedir(char *, unsigned int, struct stat *);
|
|
int estabd(char *, char *);
|
|
void ugconvert(char *, char *, int *, int *, int *);
|
|
void notify(char *, ...)
|
|
__attribute__((__format__(__printf__, 1, 2)));
|
|
void lockout(int);
|
|
char *fmttime(time_t);
|
|
|
|
/* supcname.c */
|
|
void getnams(void);
|
|
|
|
/* supcparse.c */
|
|
int parsecoll(COLLECTION *, char *, char *);
|
|
time_t getwhen(char *, char *);
|
|
int putwhen(char *, time_t);
|
|
|
|
/* supmsg.c */
|
|
int msgsignon(void);
|
|
int msgsignonack(void);
|
|
int msgsetup(void);
|
|
int msgsetupack(void);
|
|
int msgcrypt(void);
|
|
int msgcryptok(void);
|
|
int msglogin(void);
|
|
int msglogack(void);
|
|
int msgrefuse(void);
|
|
int msglist(void);
|
|
int msgneed(void);
|
|
int msgdeny(void);
|
|
int msgsend(void);
|
|
int msgrecv(int (*)(TREE *, va_list), ...);
|
|
int msgdone(void);
|
|
int msggoaway(void);
|
|
int msgxpatch(void);
|
|
int msgcompress(void);
|
|
|
|
/* vprintf.c */
|
|
/* XXX already in system headers included already - but with different
|
|
argument declarations! */
|
|
#if 0
|
|
int vprintf(const char *, va_list);
|
|
int vfprintf(FILE *, const char *, va_list);
|
|
int vsprintf(char *, const char *, va_list);
|
|
int vsnprintf(char *, size_t, const char *, va_list);
|
|
#endif
|