Example #1
0
 internal DCC(ServerConnection creatorsServerConnection, Connection Parent)
     : base(creatorsServerConnection)
 {
     chat = new DCCChatContainer(creatorsServerConnection);
     transfer = new DCCTransferContainer(creatorsServerConnection);
     parent = Parent;
 }
Example #2
0
 internal DCCChat(ServerConnection creatorsServerConnection, string Nickname, int Port, DCCChatContainer parent) : base(creatorsServerConnection, Nickname, Port, parent)
 {
 }
Example #3
0
 internal DCCChat(ServerConnection creatorsServerConnection, long RemoteHost, int Port, string Nickname, DCCChatContainer parent) : base(creatorsServerConnection, RemoteHost, Port, Nickname, parent)
 {
 }
Example #4
0
 internal DCC(ServerConnection creatorsServerConnection, Connection Parent) : base(creatorsServerConnection)
 {
     chat     = new DCCChatContainer(creatorsServerConnection);
     transfer = new DCCTransferContainer(creatorsServerConnection);
     parent   = Parent;
 }
Example #5
0
 internal DCCChat(ServerConnection creatorsServerConnection, string Nickname, int Port, DCCChatContainer parent)
     : base(creatorsServerConnection, Nickname, Port, parent)
 {
 }
Example #6
0
 internal DCCChat(ServerConnection creatorsServerConnection, long RemoteHost, int Port, string Nickname, DCCChatContainer parent)
     : base(creatorsServerConnection, RemoteHost, Port, Nickname, parent)
 {
 }