aboutsummaryrefslogtreecommitdiff
path: root/lib/libftpio/ftpio.h
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1996-11-14 05:22:12 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1996-11-14 05:22:12 +0000
commit9e05df0992fdef7808b429c3a1df533114b85522 (patch)
tree81731455d7ac268e4388f85eda14d2fbabee9786 /lib/libftpio/ftpio.h
parentb92fd90719dd01f2fccd5347e2365dafa5af4da0 (diff)
downloadsrc-9e05df0992fdef7808b429c3a1df533114b85522.tar.gz
src-9e05df0992fdef7808b429c3a1df533114b85522.zip
Oops, forget the fact that several ftp connections can be active
at the same time, so add new con_state to avoid QUIT recursion Still should go to 2.2
Notes
Notes: svn path=/head/; revision=19728
Diffstat (limited to 'lib/libftpio/ftpio.h')
-rw-r--r--lib/libftpio/ftpio.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libftpio/ftpio.h b/lib/libftpio/ftpio.h
index 2164ebd80391..7210531b1d59 100644
--- a/lib/libftpio/ftpio.h
+++ b/lib/libftpio/ftpio.h
@@ -21,12 +21,12 @@
* Turned inside out. Now returns xfers as new file ids, not as a special
* `state' of FTP_t
*
- * $Id: ftpio.h,v 1.7 1996/08/21 01:12:11 jkh Exp $
+ * $Id: ftpio.h,v 1.8 1996/09/19 17:28:34 peter Exp $
*/
/* Internal housekeeping data structure for FTP sessions */
typedef struct {
- enum { init, isopen } con_state;
+ enum { init, isopen, quit } con_state;
int fd_ctrl;
int addrtype;
char *host;