X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Fftp.h;h=34013c61dc0b29cf45befdb4fd20f78816acf0b5;hb=e8982df3e97d30c1f339d71f2eef924931a11040;hp=e8bcf10928a02eb1fc65d180d44c37ef81bcb841;hpb=cd17f98f32857e5cb547984387239bd86749044e;p=oftp diff --git a/src/ftp.h b/src/ftp.h index e8bcf10..34013c6 100644 --- a/src/ftp.h +++ b/src/ftp.h @@ -20,6 +20,11 @@ enum { FTP_CONN_ACT }; +enum { + FTP_MOD_REMDIR = 0x100, + FTP_MOD_LOCDIR = 0x200 +}; + struct ftp_op { int op; char *arg; @@ -30,6 +35,9 @@ struct ftp_op { struct ftp_dirent { char *name; int type; + long size; + + struct ftp_dirent *next; }; struct ftp {