Lines Matching defs:ftpclass
267 struct ftpclass { struct
268 struct sockinet advertise; /* PASV address to advertise as */
269 char *chroot; /* Directory to chroot(2) to at login */
270 char *classname; /* Current class */
271 struct ftpconv *conversions; /* List of conversions */
272 char *display; /* File to display upon chdir */
273 char *homedir; /* Directory to chdir(2) to at login */
274 classflag_t flags; /* Flags; see classflag_t above */
275 LLT limit; /* Max connections (-1 = unlimited) */
276 char *limitfile; /* File to display if limit reached */
277 LLT maxfilesize; /* Maximum file size of uploads */
278 LLT maxrateget; /* Maximum get transfer rate throttle */
279 LLT maxrateput; /* Maximum put transfer rate throttle */
280 LLT maxtimeout; /* Maximum permitted timeout */
281 char *motd; /* MotD file to display after login */
282 char *notify; /* Files to notify about upon chdir */
283 LLT portmin; /* Minimum port for passive mode */
284 LLT portmax; /* Maximum port for passive mode */
285 LLT rateget; /* Get (RETR) transfer rate throttle */
286 LLT rateput; /* Put (STOR) transfer rate throttle */
287 LLT timeout; /* Default timeout */
288 class_ft type; /* Class type */
312 GLOBAL struct ftpclass curclass; argument