gov.nist.javax.sip.header.ViaHeaderExt Maven / Gradle / Ivy
/*
* This code has been contributed by the authors to the public domain.
*/
package android.gov.nist.javax.sip.header;
import android.javax.sip.header.ViaHeader;
/**
* @author [email protected]
*
*/
public interface ViaHeaderExt extends ViaHeader {
/**
* Returns hostname:port as a string equivalent to the "sent-by" field
* @return "sent-by" field
* @since 2.0
*/
public String getSentByField();
/**
* Returns transport to the "sent-protocol" field
* @return "sent-protocol" field
* @since 2.0
*/
public String getSentProtocolField();
}