Examples of GtpPrimeInformationElementTV


Examples of org.protocol.gtp.prime.iet.GtpPrimeInformationElementTV

  }
 
  private void init(short cause, String ip) {
    this.getHeader().setMessageType(
        GtpPrime3gppConstants.GTP_PRIME_REDIRECTION_REQUEST);
    this.addInformationElement(new GtpPrimeInformationElementTV(
        GtpPrime3gppConstants.GTP_PRIME_IET_CAUSE,
        cause));
    addCGateway(ip);
  }
View Full Code Here

Examples of org.protocol.gtp.prime.iet.GtpPrimeInformationElementTV

  /**
   *
   */
  public GtpPrimeDataRecordTransferCDRDuplRequest() {
    super();
    this.addInformationElement(new GtpPrimeInformationElementTV(
        GtpPrime3gppConstants.GTP_PRIME_IET_PACKET_TRANSFER_COMMAND,
        GtpPrime3gppConstants.GTP_PRIME_IET_PTC_SEND_DUPLDATA));
  }
View Full Code Here

Examples of org.protocol.gtp.prime.iet.GtpPrimeInformationElementTV

  /**
   *
   */
  public GtpPrimeDataRecordTransferSequenceCancel() {
    super();
    this.addInformationElement(new GtpPrimeInformationElementTV(
        GtpPrime3gppConstants.GTP_PRIME_IET_PACKET_TRANSFER_COMMAND,
        GtpPrime3gppConstants.GTP_PRIME_IET_PTC_CANCEL_DATA));

  }
View Full Code Here

Examples of org.protocol.gtp.prime.iet.GtpPrimeInformationElementTV

   */
  public GtpPrimeDataRecordTransferResponse(short cause) {
    super();
    this.getHeader().setMessageType(
        GtpPrime3gppConstants.GTP_PRIME_DATA_RECORD_TRANSFER_RESPONSE);
    this.addInformationElement(new GtpPrimeInformationElementTV(
        GtpPrime3gppConstants.GTP_PRIME_IET_CAUSE,
        cause));
  }
View Full Code Here

Examples of org.protocol.gtp.prime.iet.GtpPrimeInformationElementTV

  public GtpPrimeRedirectionResponse(short cause) {
    super();
    this.getHeader().setMessageType(
        GtpPrime3gppConstants.GTP_PRIME_REDIRECTION_RESPONSE);
    this.addInformationElement(new GtpPrimeInformationElementTV(
        GtpPrime3gppConstants.GTP_PRIME_IET_CAUSE,
        cause));       
  }
View Full Code Here

Examples of org.protocol.gtp.prime.iet.GtpPrimeInformationElementTV

public class GtpPrimeDataRecordTransferCDRRequest extends
    GtpPrimeDataRecordTransferCDRRequestBase {

  public GtpPrimeDataRecordTransferCDRRequest() {
    super();
    this.addInformationElement(new GtpPrimeInformationElementTV(
        GtpPrime3gppConstants.GTP_PRIME_IET_PACKET_TRANSFER_COMMAND,
        GtpPrime3gppConstants.GTP_PRIME_IET_PTC_SEND_DATA));
  }
View Full Code Here

Examples of org.protocol.gtp.prime.iet.GtpPrimeInformationElementTV

  /**
   *
   */
  public GtpPrimeDataRecordTransferSequenceRelease() {
    super();
    this.addInformationElement(new GtpPrimeInformationElementTV(
        GtpPrime3gppConstants.GTP_PRIME_IET_PACKET_TRANSFER_COMMAND,
        GtpPrime3gppConstants.GTP_PRIME_IET_PTC_RELEASE_DATA));
  }
View Full Code Here

Examples of org.protocol.gtp.prime.iet.GtpPrimeInformationElementTV

      GtpPrimeInformationElementTLV tlv = new GtpPrimeInformationElementTLV(message,start);
      addInformationElement(tlv);     
      start += tlv.getTotalSize();               
    } else {
      // TV
      addInformationElement(new GtpPrimeInformationElementTV((short)(type & 0x00FF),(short)(message[start+1] & 0x00FF)));
      start += 2;
    }
    if (start < end) decodeIets(message, start, end);
  }
View Full Code Here

Examples of org.protocol.gtp.prime.iet.GtpPrimeInformationElementTV

  }
 
  public GtpPrimeEchoResponse(short restartCounter) {
    super();
    this.getHeader().setMessageType(GtpPrime3gppConstants.GTP_PRIME_ECHO_RESPONSE);       
    this.addInformationElement(new GtpPrimeInformationElementTV(GtpPrime3gppConstants.GTP_PRIME_IET_RECOVERY,restartCounter));   
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.