mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-09-12 18:49:39 +02:00
Should work, but doesnt
This commit is contained in:
parent
7a7b45ad9b
commit
f3c1eebd05
5 changed files with 113 additions and 76 deletions
|
@ -348,7 +348,7 @@ public final class Socks5Proxy {
|
|||
*
|
||||
* @param digest to be added to the list of allowed transfers
|
||||
*/
|
||||
protected void addTransfer(String digest) {
|
||||
public void addTransfer(String digest) {
|
||||
this.allowedConnections.add(digest);
|
||||
}
|
||||
|
||||
|
@ -361,7 +361,7 @@ public final class Socks5Proxy {
|
|||
*
|
||||
* @param digest to be removed from the list of allowed transfers
|
||||
*/
|
||||
protected void removeTransfer(String digest) {
|
||||
public void removeTransfer(String digest) {
|
||||
this.allowedConnections.remove(digest);
|
||||
this.connectionMap.remove(digest);
|
||||
}
|
||||
|
|
|
@ -24,6 +24,8 @@ import org.jivesoftware.smackx.jingle.element.JingleContentTransport;
|
|||
*/
|
||||
public interface JingleTransportHandler<D extends JingleContentTransport> extends JingleTransportInfoListener {
|
||||
|
||||
void prepareSession();
|
||||
|
||||
void establishOutgoingSession(JingleTransportEstablishedCallback callback);
|
||||
|
||||
void establishIncomingSession(JingleTransportEstablishedCallback callback);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue