2017-11-24 01:00:56 +00:00
|
|
|
import {UUID} from './UUID';
|
2017-11-24 17:45:34 +00:00
|
|
|
import {MessageDecoder} from './MessageDecoder';
|
2017-11-24 01:00:56 +00:00
|
|
|
|
|
|
|
|
export class Circuit
|
|
|
|
|
{
|
|
|
|
|
secureSessionID: UUID;
|
|
|
|
|
sessionID: UUID;
|
|
|
|
|
circuitCode: number;
|
|
|
|
|
udpBlacklist: string[];
|
|
|
|
|
timestamp: number;
|
|
|
|
|
seedCapability: string;
|
2017-11-24 17:45:34 +00:00
|
|
|
decoder: MessageDecoder;
|
|
|
|
|
|
|
|
|
|
constructor()
|
|
|
|
|
{
|
|
|
|
|
this.decoder = new MessageDecoder();
|
|
|
|
|
}
|
2017-11-24 01:00:56 +00:00
|
|
|
}
|