All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.antstreaming.rtsp.protocol.RtspHeaderCode Maven / Gradle / Ivy

Go to download

Ant Media Server supports RTMP, RTSP, MP4, HLS, WebRTC, Adaptive Streaming, etc.

There is a newer version: 2.11.3
Show newest version
package com.antstreaming.rtsp.protocol;

/**
 * RtspHeaderCode.
 */
public enum RtspHeaderCode {
  CSeq("CSeq"), Require("Require"), SessionGroup("SessionGroup"), EncryptionType("EncryptionType"), CAS_ID(
      "CAS_ID"), EncryptControl("EncryptControl"), encryption_scheme("encryption_scheme"), Transport(
      "Transport"), Date("Date"), Session("Session"), UserAgent("User-Agent"), Accept("Accept"), MayNotify(
      "May-Notify"), UUData("UUData"), EmbeddedEncryptor("EmbeddedEncryptor"), eventDate(
      "event-date"), SecureData("SecureData"), Location("Location"), UserNotifiacation(
      "User-Notifiacation"), Range("Range"), Scale("Scale"), Notice("Notice"), Public("Public"), Server(
      "Server"), ContentLength("Content-Length"), ContentType("Content-Type"), Connection(
      "Connection"), OnDemandSessionId("OnDemandSessionId"), InbandMarker("InbandMarker"), insertDuration(
      "insertDuration"), Policy("Policy"), Reason("Reason");


  private final String value;

  private RtspHeaderCode(String value) {
    this.value = value;
  }

  public String value() {
    return this.value;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy