[BACK]Return to ftp_var.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ftp

Diff for /src/usr.bin/ftp/ftp_var.h between version 1.12 and 1.13

version 1.12, 1997/04/23 20:33:16 version 1.13, 1997/07/25 21:56:21
Line 1 
Line 1 
 /*      $OpenBSD$       */  /*      $OpenBSD$       */
 /*      $NetBSD: ftp_var.h,v 1.16 1997/04/14 09:09:23 lukem Exp $       */  /*      $NetBSD: ftp_var.h,v 1.17 1997/07/20 09:45:55 lukem Exp $       */
   
 /*  /*
  * Copyright (c) 1985, 1989, 1993, 1994   * Copyright (c) 1985, 1989, 1993, 1994
Line 106 
Line 106 
 int     bytesize;               /* local byte size in binary */  int     bytesize;               /* local byte size in binary */
 int     anonftp;                /* automatic anonymous login */  int     anonftp;                /* automatic anonymous login */
 int     dirchange;              /* remote directory changed by cd command */  int     dirchange;              /* remote directory changed by cd command */
 int     retry_connect;          /* retry connect if failed */  unsigned int retry_connect;     /* retry connect if failed */
 int     ttywidth;               /* width of tty */  int     ttywidth;               /* width of tty */
   
 #ifndef SMALL  #ifndef SMALL
Line 114 
Line 114 
 EditLine *el;                   /* editline(3) status structure */  EditLine *el;                   /* editline(3) status structure */
 History  *hist;                 /* editline(3) history structure */  History  *hist;                 /* editline(3) history structure */
 char     *cursor_pos;           /* cursor position we're looking for */  char     *cursor_pos;           /* cursor position we're looking for */
 int       cursor_argc;          /* location of cursor in margv */  size_t    cursor_argc;          /* location of cursor in margv */
 int       cursor_argo;          /* offset of cursor in margv[cursor_argc] */  size_t    cursor_argo;          /* offset of cursor in margv[cursor_argc] */
 #endif /* !SMALL */  #endif /* !SMALL */
   
 off_t   bytes;                  /* current # of bytes read */  off_t   bytes;                  /* current # of bytes read */
Line 125 
Line 125 
 char    *hostname;              /* name of host connected to */  char    *hostname;              /* name of host connected to */
 int     unix_server;            /* server is unix, can use binary for ascii */  int     unix_server;            /* server is unix, can use binary for ascii */
 int     unix_proxy;             /* proxy is unix, can use binary for ascii */  int     unix_proxy;             /* proxy is unix, can use binary for ascii */
 int     ftpport;                /* port number to use for ftp connections */  in_port_t ftpport;              /* port number to use for ftp connections */
 int     httpport;               /* port number to use for http connections */  in_port_t httpport;             /* port number to use for http connections */
   
 jmp_buf toplevel;               /* non-local goto stuff for cmd scanner */  jmp_buf toplevel;               /* non-local goto stuff for cmd scanner */
   

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13