Source code of Windows XP (NT5)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
// // This is the default hive definition for the FTP Server // // Author: MuraliK // Created: 21-March-1995 //
\registry\machine SYSTEM CurrentControlSet Services FtpSvc DependOnService = REG_MULTI_SZ TCPIP DisplayName = REG_SZ Microsoft FTP Server( MuraliK 95) ErrorControl = REG_DWORD 0x1 ImagePath = REG_EXPAND_SZ %SystemRoot%\System32\inetsvcs.exe ObjectName = REG_SZ LocalSystem Start = REG_DWORD 0x3 Type = REG_DWORD 0x20
// // Gopher parameters are kept under the parameters key //
Parameters
// // Port to run the service on //
Port = REG_DWORD 0x15
HomeDirectory = REG_SZ c:\internet
Virtual Roots / = REG_SZ c:\internet /gophroot = REG_SZ c:\internet\gophroot // // Security related parameters // EnablePortAttack = REG_DWORD 0 AllowAnonymous = REG_DWORD 1 LogAnonymous = REG_DWORD 0 LogNonAnonymous = REG_DWORD 0 AnonymousUserName = REG_SZ Internet
// // Specifies when to timeout connection (in seconds) // ConnectionTimeout = REG_DWORD 900
// // Maximum number of simultaneous connections allowed //
MaxConnections = REG_DWORD 0x00000014 // // Access Masks // ReadAccessMask = REG_DWORD 0x4 WriteAccessMask = REG_DWORD 0x0
// // Log Configuration for Gopher Service // Size is set to 4 MegaBytes // LogType = REG_DWORD 1 LogFileDirectory = REG_EXPAND_SZ %SystemRoot%\System32 LogFileTruncateSize = REG_DWORD 4000000000 LogFilePeriod = REG_DWORD 1 LogSqlDataSource = REG_SZ TSLOG LogSqlTableName = REG_SZ gophlog LogSqlUserName = REG_SZ InternetAdmin LogSqlPassword = REG_SZ sqllog
// // For tracing debug output //
DebugFlags = REG_DWORD 0x80000000
// // Path name specifies location of the SNMP MIB DLL // Pathname = REG_EXPAND_SZ %systemroot%\system32
|