Roxen.git
/
server
/
plugins
/
protocols
/
prot_ftp.pike
version
»
Context lines:
10
20
40
80
file
none
3
Roxen.git/server/plugins/protocols/prot_ftp.pike:1:
+
// This is a roxen protocol module.
+
// Copyright © 2001, Roxen IS.
-
+
inherit Protocol;
+
constant supports_ipless = 0;
+
constant name = "ftp";
+
constant prot_name = "ftp";
+
constant requesthandlerfile = "protocols/ftp.pike";
+
constant default_port = 21;
+
+
// Some statistics
+
int sessions;
+
int ftp_users;
+
int ftp_users_now;
+
+
mapping(string:int) ftp_sessions = ([]);
+
+
void create( mixed ... args )
+
{
+
roxen.set_up_ftp_variables( this_object() );
+
::create( @args );
+
}
Newline at end of file added.