示例#1
0
int
MultiServer::rstat(ServerContext& s, const char *path, file_stat_t& fileStat)
{
	//TRACE();
	_DEBUG("rstat path = %s", path);
	string subdir;
	FileServer *server = getServer(s, path, subdir);
	return (server
			? server->rstat(s, subdir.c_str(), fileStat)
			: MemoryServer::rstat(s, path, fileStat));
}