예제 #1
0
 public AssociateRequestPdu(ProtocolDataUnit.Type type, string called, string calling)
     : base(type)
 {
     this.reserved1 = 0;
     this.length    = -1;
     this.version   = 0x01;
     this.reserved2 = 0;
     this.called    = pad(called, 16);
     this.calling   = pad(calling, 16);
     this.reserved3 = new byte[32];
     this.fields    = new List <Item>();
 }
예제 #2
0
 public ProtocolDataUnit(ProtocolDataUnit.Type type)
 {
     this.type = type;
 }
예제 #3
0
 public AssociationReleasePdu(ProtocolDataUnit.Type type) :
     base(type)
 {
 }