SIP Communicator: the OpenSource Java VoIP and Instant Messaging client.

Uses of Class
net.java.sip.communicator.impl.media.RawPacket

Packages that use RawPacket
net.java.sip.communicator.impl.media   
net.java.sip.communicator.impl.media.transform   
net.java.sip.communicator.impl.media.transform.dummy   
net.java.sip.communicator.impl.media.transform.srtp   
net.java.sip.communicator.impl.media.transform.zrtp   
 

Uses of RawPacket in net.java.sip.communicator.impl.media
 

Methods in net.java.sip.communicator.impl.media that return RawPacket
protected  RawPacket RTPConnectorOutputStream.createRawPacket(byte[] buffer, int offset, int length)
          Creates a new RawPacket from a specific byte[] buffer in order to have this instance send its packet data through its RTPConnectorOutputStream.write(byte[], int, int) method.
protected  RawPacket RTPConnectorInputStream.createRawPacket(DatagramPacket datagramPacket)
          Creates a new RawPacket from a specific DatagramPacket in order to have this instance receive its packet data through its RTPConnectorInputStream.read(byte[], int, int) method.
 

Uses of RawPacket in net.java.sip.communicator.impl.media.transform
 

Methods in net.java.sip.communicator.impl.media.transform that return RawPacket
protected  RawPacket TransformOutputStream.createRawPacket(byte[] buffer, int offset, int length)
           
protected  RawPacket TransformInputStream.createRawPacket(DatagramPacket datagramPacket)
           
 RawPacket PacketTransformer.reverseTransform(RawPacket pkt)
          Reverse transform a packet (transform a transformed packet back)
 RawPacket PacketTransformer.transform(RawPacket pkt)
          Transform a packet.
 

Methods in net.java.sip.communicator.impl.media.transform with parameters of type RawPacket
 RawPacket PacketTransformer.reverseTransform(RawPacket pkt)
          Reverse transform a packet (transform a transformed packet back)
 RawPacket PacketTransformer.transform(RawPacket pkt)
          Transform a packet.
 

Uses of RawPacket in net.java.sip.communicator.impl.media.transform.dummy
 

Methods in net.java.sip.communicator.impl.media.transform.dummy that return RawPacket
 RawPacket DummyTransformEngine.reverseTransform(RawPacket pkt)
           
 RawPacket DummyTransformEngine.transform(RawPacket pkt)
           
 

Methods in net.java.sip.communicator.impl.media.transform.dummy with parameters of type RawPacket
 RawPacket DummyTransformEngine.reverseTransform(RawPacket pkt)
           
 RawPacket DummyTransformEngine.transform(RawPacket pkt)
           
 

Uses of RawPacket in net.java.sip.communicator.impl.media.transform.srtp
 

Methods in net.java.sip.communicator.impl.media.transform.srtp that return RawPacket
 RawPacket SRTCPTransformer.reverseTransform(RawPacket pkt)
          Decrypt a SRTCP packet Currently SRTCP packet encryption / decryption is not supported So this method does not change the packet content
 RawPacket SRTPTransformer.reverseTransform(RawPacket pkt)
           
 RawPacket SRTCPTransformer.transform(RawPacket pkt)
          Encrypt a SRTCP packet Currently SRTCP packet encryption / decryption is not supported So this method does not change the packet content
 RawPacket SRTPTransformer.transform(RawPacket pkt)
           
 

Methods in net.java.sip.communicator.impl.media.transform.srtp with parameters of type RawPacket
static int PacketManipulator.GetRTPHeaderLength(RawPacket pkt)
          Get RTP header length from a RTP packet
static int PacketManipulator.GetRTPPaddingSize(RawPacket pkt)
          Get RTP padding size from a RTP packet
static int PacketManipulator.GetRTPPayloadLength(RawPacket pkt)
          Get RTP payload length from a RTP packet
static byte PacketManipulator.GetRTPPayloadType(RawPacket pkt)
          Get RTP payload type from a RTP packet
static int PacketManipulator.GetRTPSequenceNumber(RawPacket pkt)
          Get RTP sequence number from a RTP packet
static long PacketManipulator.GetRTPSSRC(RawPacket pkt)
          Get RTP SSRC from a RTP packet
static boolean PacketManipulator.IsPacketMarked(RawPacket pkt)
          Test whether if a RTP packet is padded
 void SRTPCryptoContext.processPacketAESCM(RawPacket pkt)
          Perform Counter Mode AES encryption / decryption
 void SRTPCryptoContext.processPacketAESF8(RawPacket pkt)
          Perform F8 Mode AES encryption / decryption
static byte[] PacketManipulator.ReadTimeStampIntoByteArray(RawPacket pkt)
          Get RTP timestamp from a RTP packet
 RawPacket SRTCPTransformer.reverseTransform(RawPacket pkt)
          Decrypt a SRTCP packet Currently SRTCP packet encryption / decryption is not supported So this method does not change the packet content
 RawPacket SRTPTransformer.reverseTransform(RawPacket pkt)
           
 boolean SRTPCryptoContext.reverseTransformPacket(RawPacket pkt)
          Transform a SRTP packet into a RTP packet.
 RawPacket SRTCPTransformer.transform(RawPacket pkt)
          Encrypt a SRTCP packet Currently SRTCP packet encryption / decryption is not supported So this method does not change the packet content
 RawPacket SRTPTransformer.transform(RawPacket pkt)
           
 void SRTPCryptoContext.transformPacket(RawPacket pkt)
          Transform a RTP packet into a SRTP packet.
 

Uses of RawPacket in net.java.sip.communicator.impl.media.transform.zrtp
 

Subclasses of RawPacket in net.java.sip.communicator.impl.media.transform.zrtp
 class ZrtpRawPacket
          ZRTP packet representation.
 

Methods in net.java.sip.communicator.impl.media.transform.zrtp that return RawPacket
 RawPacket ZRTPTransformEngine.reverseTransform(RawPacket pkt)
          The input data stream calls this method to transform incoming packets.
 RawPacket ZRTPCTransformer.reverseTransform(RawPacket pkt)
          Decrypt a SRTCP packet Currently SRTCP packet encryption / decryption is not supported So this method does not change the packet content
 RawPacket ZRTPTransformEngine.transform(RawPacket pkt)
          The data output stream calls this method to transform outgoing packets.
 RawPacket ZRTPCTransformer.transform(RawPacket pkt)
          Encrypt a SRTCP packet Currently SRTCP packet encryption / decryption is not supported So this method does not change the packet content
 

Methods in net.java.sip.communicator.impl.media.transform.zrtp with parameters of type RawPacket
 RawPacket ZRTPTransformEngine.reverseTransform(RawPacket pkt)
          The input data stream calls this method to transform incoming packets.
 RawPacket ZRTPCTransformer.reverseTransform(RawPacket pkt)
          Decrypt a SRTCP packet Currently SRTCP packet encryption / decryption is not supported So this method does not change the packet content
 RawPacket ZRTPTransformEngine.transform(RawPacket pkt)
          The data output stream calls this method to transform outgoing packets.
 RawPacket ZRTPCTransformer.transform(RawPacket pkt)
          Encrypt a SRTCP packet Currently SRTCP packet encryption / decryption is not supported So this method does not change the packet content
 

Constructors in net.java.sip.communicator.impl.media.transform.zrtp with parameters of type RawPacket
ZrtpRawPacket(RawPacket pkt)
          Construct an input ZrtpRawPacket using a received RTP raw packet.
 


SIP Communicator: the OpenSource Java VoIP and Instant Messaging client.

SIP Communicator, the OpenSource Java VoIP and Instant Messaging client.
Distributable under LGPL license.