=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ftp/ftp_var.h,v retrieving revision 1.22 retrieving revision 1.23 diff -c -r1.22 -r1.23 *** src/usr.bin/ftp/ftp_var.h 2003/06/03 02:56:08 1.22 --- src/usr.bin/ftp/ftp_var.h 2006/05/16 16:20:42 1.23 *************** *** 1,4 **** ! /* $OpenBSD: ftp_var.h,v 1.22 2003/06/03 02:56:08 millert Exp $ */ /* $NetBSD: ftp_var.h,v 1.18 1997/08/18 10:20:25 lukem Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: ftp_var.h,v 1.23 2006/05/16 16:20:42 deraadt Exp $ */ /* $NetBSD: ftp_var.h,v 1.18 1997/08/18 10:20:25 lukem Exp $ */ /* *************** *** 87,92 **** --- 87,93 ---- #define FTP_PORT 21 /* default if ! getservbyname("ftp/tcp") */ #define HTTP_PORT 80 /* default if ! getservbyname("http/tcp") */ + #define HTTPS_PORT 443 /* default if ! getservbyname("https/tcp") */ #define HTTP_USER_AGENT "User-Agent: OpenBSD ftp" /* User-Agent string sent to web server */ #ifndef GATE_PORT #define GATE_PORT 21 /* default if ! getservbyname("ftpgate/tcp") */ *************** *** 171,176 **** --- 172,180 ---- char *ftpport; /* port number to use for ftp connections */ char *httpport; /* port number to use for http connections */ + #ifndef SMALL + char *httpsport; /* port number to use for https connections */ + #endif char *gateport; /* port number to use for gateftp connections */ jmp_buf toplevel; /* non-local goto stuff for cmd scanner */