Roxen.git
/
server
/
plugins
/
protocols
/
ftp.pike
version
»
Context lines:
10
20
40
80
file
none
3
Roxen.git/server/plugins/protocols/ftp.pike:1:
// This is a roxen protocol module. // Copyright © 1997 - 2001, Roxen IS. /* * FTP protocol mk 2 *
-
* $Id: ftp.pike,v 2.
82
2002/10/
01
23
:
55
:
33
nilsson Exp $
+
* $Id: ftp.pike,v 2.
83
2002/10/
24
00
:
11
:
28
nilsson Exp $
* * Henrik Grubbström <grubba@roxen.com> */ /* * TODO: * * How much is supposed to be logged? */
Roxen.git/server/plugins/protocols/ftp.pike:177:
DWRITE("REQUESTID: New request id.\n"); #endif if (m_rid) { object o = this_object(); foreach(indices(m_rid), string var) { if (!(< "create", "connection", "configuration", "__INIT", "clone_me", "end", "ready_to_receive", "send", "scan_for_query", "send_result", "misc", "url_base", "set_response_header",
-
"add_response_header",
+
"add_response_header",
"set_output_charset",
+
"adjust_for_config_path",
"destroy", "_num", "__num">)[var]) { #ifdef FTP2_DEBUG if (catch { #endif /* FTP2_DEBUG */ o[var] = m_rid[var]; #ifdef FTP2_DEBUG }) { report_error("FTP2: " "Failed to copy variable %s (value:%O)\n", var, m_rid[var]);
Roxen.git/server/plugins/protocols/ftp.pike:1529:
static private RequestID master_session; static private string dataport_addr; static private int dataport_port; static private string mode = "A"; static private string cwd = "/"; static private User auth_user;
-
//
!
Authenticated user.
+
// Authenticated user.
static private string user; static private string password; static private int logged_in; static private object curr_pipe; static private int restart_point; static private multiset|int allowed_shells = 0;