mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-26 08:12:05 +01:00
Fix unmappable character for encoding
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@11253 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
d334ab0c2a
commit
197aa187d9
8 changed files with 9 additions and 9 deletions
|
@ -29,7 +29,7 @@ import java.util.List;
|
||||||
* Public Abstract Class provides a clear interface between Media Session and Jingle API.
|
* Public Abstract Class provides a clear interface between Media Session and Jingle API.
|
||||||
* <p/>
|
* <p/>
|
||||||
* When a Jingle Session is fully stablished, we will have a Payload Type and two transport candidates defined for it.
|
* When a Jingle Session is fully stablished, we will have a Payload Type and two transport candidates defined for it.
|
||||||
* Smack Jingle API don´t implement Media Transmit and Receive methods.
|
* Smack Jingle API don't implement Media Transmit and Receive methods.
|
||||||
* But provides an interface to let the user implements it using another API. For instance: JMF.
|
* But provides an interface to let the user implements it using another API. For instance: JMF.
|
||||||
* <p/>
|
* <p/>
|
||||||
* <i>The Class that implements this one, must have the support to transmit and receive the jmf.</i>
|
* <i>The Class that implements this one, must have the support to transmit and receive the jmf.</i>
|
||||||
|
|
|
@ -36,7 +36,7 @@ import org.jivesoftware.smackx.jingle.nat.TransportCandidate;
|
||||||
* It sould be used to transmit and receive audio captured from the Mic.
|
* It sould be used to transmit and receive audio captured from the Mic.
|
||||||
* This Class should be automaticly controlled by JingleSession.
|
* This Class should be automaticly controlled by JingleSession.
|
||||||
* But you could also use in any VOIP application.
|
* But you could also use in any VOIP application.
|
||||||
* For better NAT Traversal support this implementation don´t support only receive or only transmit.
|
* For better NAT Traversal support this implementation don't support only receive or only transmit.
|
||||||
* To receive you MUST transmit. So the only implemented and functionally methods are startTransmit() and stopTransmit()
|
* To receive you MUST transmit. So the only implemented and functionally methods are startTransmit() and stopTransmit()
|
||||||
*
|
*
|
||||||
* @author Thiago Camargo
|
* @author Thiago Camargo
|
||||||
|
|
|
@ -47,7 +47,7 @@ import org.jivesoftware.smackx.jingle.nat.TransportCandidate;
|
||||||
* It sould be used to transmit and receive audio captured from the Mic.
|
* It sould be used to transmit and receive audio captured from the Mic.
|
||||||
* This Class should be automaticly controlled by JingleSession.
|
* This Class should be automaticly controlled by JingleSession.
|
||||||
* But you could also use in any VOIP application.
|
* But you could also use in any VOIP application.
|
||||||
* For better NAT Traversal support this implementation don´t support only receive or only transmit.
|
* For better NAT Traversal support this implementation don't support only receive or only transmit.
|
||||||
* To receive you MUST transmit. So the only implemented and functionally methods are startTransmit() and stopTransmit()
|
* To receive you MUST transmit. So the only implemented and functionally methods are startTransmit() and stopTransmit()
|
||||||
*
|
*
|
||||||
* @author Thiago Camargo
|
* @author Thiago Camargo
|
||||||
|
|
|
@ -45,7 +45,7 @@ import org.jivesoftware.smackx.jingle.nat.TransportCandidate;
|
||||||
* This Class implements a complete JingleMediaSession.
|
* This Class implements a complete JingleMediaSession.
|
||||||
* It sould be used to transmit and receive captured images from the Display.
|
* It sould be used to transmit and receive captured images from the Display.
|
||||||
* This Class should be automaticly controlled by JingleSession.
|
* This Class should be automaticly controlled by JingleSession.
|
||||||
* For better NAT Traversal support this implementation don´t support only receive or only transmit.
|
* For better NAT Traversal support this implementation don't support only receive or only transmit.
|
||||||
* To receive you MUST transmit. So the only implemented and functionally methods are startTransmit() and stopTransmit()
|
* To receive you MUST transmit. So the only implemented and functionally methods are startTransmit() and stopTransmit()
|
||||||
*
|
*
|
||||||
* @author Thiago Camargo
|
* @author Thiago Camargo
|
||||||
|
|
|
@ -265,7 +265,7 @@ public class ICECandidate extends TransportCandidate implements Comparable {
|
||||||
|
|
||||||
final TestResult result = new TestResult();
|
final TestResult result = new TestResult();
|
||||||
|
|
||||||
// Media Proxy don´t have Echo features.
|
// Media Proxy don't have Echo features.
|
||||||
// If its a relayed candidate we assumpt that is NOT Valid while other candidates still being checked.
|
// If its a relayed candidate we assumpt that is NOT Valid while other candidates still being checked.
|
||||||
// The negotiator MUST add then in the correct situations
|
// The negotiator MUST add then in the correct situations
|
||||||
if (getType().equals("relay")) {
|
if (getType().equals("relay")) {
|
||||||
|
|
|
@ -386,7 +386,7 @@ public class RTPBridge extends IQ {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get a new RTPBridge Candidate from the server.
|
* Get a new RTPBridge Candidate from the server.
|
||||||
* If a error occurs or the server don´t support RTPBridge Service, null is returned.
|
* If a error occurs or the server don't support RTPBridge Service, null is returned.
|
||||||
*
|
*
|
||||||
* @param xmppConnection
|
* @param xmppConnection
|
||||||
* @param sessionID
|
* @param sessionID
|
||||||
|
|
|
@ -183,7 +183,7 @@ public class STUN extends IQ {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get a new STUN Server Address and port from the server.
|
* Get a new STUN Server Address and port from the server.
|
||||||
* If a error occurs or the server don´t support STUN Service, null is returned.
|
* If a error occurs or the server don't support STUN Service, null is returned.
|
||||||
*
|
*
|
||||||
* @param xmppConnection
|
* @param xmppConnection
|
||||||
* @return
|
* @return
|
||||||
|
|
|
@ -208,7 +208,7 @@ public abstract class TransportCandidate {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the jingle´s sessionId that is using this candidate
|
* Get the jingle's sessionId that is using this candidate
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
@ -217,7 +217,7 @@ public abstract class TransportCandidate {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the jingle´s sessionId that is using this candidate
|
* Set the jingle's sessionId that is using this candidate
|
||||||
*
|
*
|
||||||
* @param sessionId
|
* @param sessionId
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue