|
|
| version 1.2, 2003/06/17 04:27:07 | version 1.3, 2003/11/14 03:54:30 |
|---|---|
| Line 32 | Line 32 |
| * | * |
| * @(#)extern.h 8.2 (Berkeley) 4/4/94 | * @(#)extern.h 8.2 (Berkeley) 4/4/94 |
| * $FreeBSD: src/libexec/ftpd/extern.h,v 1.14.2.2 2002/02/16 14:02:00 dwmalone Exp $ | * $FreeBSD: src/libexec/ftpd/extern.h,v 1.14.2.2 2002/02/16 14:02:00 dwmalone Exp $ |
| * $DragonFly: src/libexec/ftpd/extern.h,v 1.1 2003/06/16 04:58:37 dillon Exp $ | * $DragonFly$ |
| */ | */ |
| #include <sys/types.h> | #include <sys/types.h> |
| #include <sys/socket.h> | #include <sys/socket.h> |
| void blkfree __P((char **)); | void blkfree (char **); |
| char **copyblk __P((char **)); | char **copyblk (char **); |
| void cwd __P((char *)); | void cwd (char *); |
| void delete __P((char *)); | void delete (char *); |
| void dologout __P((int)); | void dologout (int); |
| void fatalerror __P((char *)); | void fatalerror (char *); |
| void ftpd_logwtmp __P((char *, char *, struct sockaddr *addr)); | void ftpd_logwtmp (char *, char *, struct sockaddr *addr); |
| int ftpd_pclose __P((FILE *)); | int ftpd_pclose (FILE *); |
| FILE *ftpd_popen __P((char *, char *)); | FILE *ftpd_popen (char *, char *); |
| char *getline __P((char *, int, FILE *)); | char *getline (char *, int, FILE *); |
| void lreply __P((int, const char *, ...)); | void lreply (int, const char *, ...); |
| void makedir __P((char *)); | void makedir (char *); |
| void nack __P((char *)); | void nack (char *); |
| void pass __P((char *)); | void pass (char *); |
| void passive __P((void)); | void passive (void); |
| void long_passive __P((char *, int)); | void long_passive (char *, int); |
| void perror_reply __P((int, char *)); | void perror_reply (int, char *); |
| void pwd __P((void)); | void pwd (void); |
| void removedir __P((char *)); | void removedir (char *); |
| void renamecmd __P((char *, char *)); | void renamecmd (char *, char *); |
| char *renamefrom __P((char *)); | char *renamefrom (char *); |
| void reply __P((int, const char *, ...)); | void reply (int, const char *, ...); |
| void retrieve __P((char *, char *)); | void retrieve (char *, char *); |
| void send_file_list __P((char *)); | void send_file_list (char *); |
| #ifdef OLD_SETPROCTITLE | #ifdef OLD_SETPROCTITLE |
| void setproctitle __P((const char *, ...)); | void setproctitle (const char *, ...); |
| #endif | #endif |
| void statcmd __P((void)); | void statcmd (void); |
| void statfilecmd __P((char *)); | void statfilecmd (char *); |
| void store __P((char *, char *, int)); | void store (char *, char *, int); |
| void upper __P((char *)); | void upper (char *); |
| void user __P((char *)); | void user (char *); |
| void yyerror __P((char *)); | void yyerror (char *); |
| int yyparse __P((void)); | int yyparse (void); |
| #if defined(SKEY) && defined(_PWD_H_) /* XXX evil */ | #if defined(SKEY) && defined(_PWD_H_) /* XXX evil */ |
| char *skey_challenge __P((char *, struct passwd *, int)); | char *skey_challenge (char *, struct passwd *, int); |
| #endif | #endif |
| int ls_main __P((int, char **)); | int ls_main (int, char **); |
| struct sockaddr_in; | struct sockaddr_in; |
| struct sockaddr_in6; | struct sockaddr_in6; |