C# Class OpenSim.Region.CoreModules.Agent.IPBan.IPBanModule

Inheritance: IRegionModule
Exibir arquivo Open project: openmetaversefoundation/fortis-opensim

Public Methods

Method Description
Ban ( string host ) : void

Bans all users from the specified network from connecting. DNS bans are in the form "somewhere.com" will block ANY matching domain (including "betasomewhere.com", "beta.somewhere.com", "somewhere.com.beta") - make sure to be reasonably specific in DNS bans. IP address bans match on first characters, so, "127.0.0.1" will ban only that address, "127.0.1" will ban "127.0.10.0" but "127.0.1." will ban only the "127.0.1.*" network

Close ( ) : void
Initialise ( Scene scene, IConfigSource source ) : void
PostInitialise ( ) : void

Method Details

Ban() public method

Bans all users from the specified network from connecting. DNS bans are in the form "somewhere.com" will block ANY matching domain (including "betasomewhere.com", "beta.somewhere.com", "somewhere.com.beta") - make sure to be reasonably specific in DNS bans. IP address bans match on first characters, so, "127.0.0.1" will ban only that address, "127.0.1" will ban "127.0.10.0" but "127.0.1." will ban only the "127.0.1.*" network
public Ban ( string host ) : void
host string See summary for explanation of parameter
return void

Close() public method

public Close ( ) : void
return void

Initialise() public method

public Initialise ( Scene scene, IConfigSource source ) : void
scene OpenSim.Region.Framework.Scenes.Scene
source IConfigSource
return void

PostInitialise() public method

public PostInitialise ( ) : void
return void