summaryrefslogtreecommitdiff
path: root/twoftpd-anon.c
diff options
context:
space:
mode:
authorGerrit Pape <pape@smarden.org>2014-07-26 09:58:12 +0200
committerGerrit Pape <pape@smarden.org>2014-07-26 09:58:12 +0200
commit6399ccc0a3abc45458bc3c7902e241d785b96045 (patch)
tree08e42ed2874b749404928b08ec7ec1fc10cbd953 /twoftpd-anon.c
Import twoftpd_1.42.orig.tar.gz
[dgit import orig twoftpd_1.42.orig.tar.gz]
Diffstat (limited to 'twoftpd-anon.c')
-rw-r--r--twoftpd-anon.c51
1 files changed, 51 insertions, 0 deletions
diff --git a/twoftpd-anon.c b/twoftpd-anon.c
new file mode 100644
index 0000000..0352e43
--- /dev/null
+++ b/twoftpd-anon.c
@@ -0,0 +1,51 @@
+/* twoftpd-anon.c - Main dispatch table for twoftpd-anon
+ * Copyright (C) 2008 Bruce Guenter <bruce@untroubled.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+#include "twoftpd.h"
+#include "backend.h"
+
+const char program[] = "twoftpd-anon";
+
+const command verbs[] = {
+ { "TYPE", 0, 0, handle_type },
+ { "STRU", 0, 0, handle_stru },
+ { "MODE", 0, 0, handle_mode },
+ { "CWD", 0, 0, handle_cwd },
+ { "PWD", 0, handle_pwd, 0 },
+ { "CDUP", 0, handle_cdup, 0 },
+ { "PASV", 0, handle_pasv, 0 },
+ { "PORT", 0, 0, handle_port },
+ { "LIST", 0, handle_list, handle_list },
+ { "NLST", 0, handle_nlst, handle_nlst },
+ { "SIZE", 0, 0, handle_size },
+ { "MDTM", 0, 0, handle_mdtm },
+ { "REST", 0, 0, handle_rest },
+ { "RETR", 0, 0, handle_retr },
+ /* Compatibility verbs as defined by RFC1123 */
+ { "XCWD", 0, 0, handle_cwd },
+ { "XPWD", 0, handle_pwd, 0 },
+ { "XCUP", 0, handle_cdup, 0 },
+ /* Handle stray login commands */
+ { "USER", 1, 0, handle_pass },
+ { "PASS", 1, 0, handle_pass },
+ { "ACCT", 0, 0, handle_pass },
+ { 0, 0, 0, 0 }
+};
+
+const command site_commands[] = {
+ { 0, 0, 0, 0 }
+};