Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am developing the facebook chat using libjingle. I am in china(please forgive my English),so i use vpn/pptp connect facebook xmpp by libjingle before this. Now i don't want to use vpn/pptp,it is very trouble.I use libjingle socks5 proxy connect facebook xmpp server.

But connect error:

[021:185] [11dc] resolve chat.facebook.com to: 159.106.121.75
[021:232] [c7c] enter Login retry:1
[021:232] [c7c] Connect to: 159.106.121.75:5222 retry:1 pumpraise 5.27 ms
[021:232] [c7c] talkpump::gotstate: 1 last state: 2 
[021:232] [c7c] [pumpstate] change 3,last state 2,logout 0
[021:232] [11dc] XmppSocket::XmppSocket CreateAsyncSocket
[021:248] [11dc] SOCK[1700] Connect(173.212.238.124:1080) Ret: -1 Error: 10035
[021:248] [c7c] pumpstate changed 3,logout 0
[021:840] [11dc] Signalled with kfConnect: 6
[021:840] [11dc] SChannelAdapter::OnConnectEvent
The thread 'Win32 Thread' (0x1608) has exited with code 0 (0x0).
[053:243] [11dc] SOCK[1700] OnClose() Error: 0
[053:243] [11dc] Error(xmppsocket.cc:141): XmppSocket closed, err:0
[053:243] [11dc] Engine closed, old state:1, state:4 error:8 sub error:0

This is XmppClientSettings(no auth):

xcs.set_proxy_host(proxy_host);
xcs.set_proxy_port(proxy_port);
xcs.set_proxy(talk_base::PROXY_SOCKS5);

/libjingle/talk/examples/login/xmppsocket.cc:

if (xcs.proxy() == talk_base::PROXY_SOCKS5) {
  talk_base::AsyncSocket * proxy_socket = 0;  
  talk_base::SocketAddress proxy_address = talk_base::SocketAddress(
      xcs.proxy_host(), xcs.proxy_port());
  proxy_socket = new talk_base::AsyncSocksProxySocket(socket, proxy_address,
      xcs.proxy_user(), xcs.proxy_pass());
  socket = proxy_socket;
}

I use dante socks5 server in vps.

internal:173.212.238.*** port = 1080
external:173.212.238.***
method: username none
compatibility: sameport
extension: bind
client pass {
      from: 0.0.0.0/0 to: 0.0.0.0/0
      log: connect disconnect error
}
#allow bind to ports greater than 1023
pass {
      from: 0.0.0.0/0 to: 0.0.0.0/0
      command: bind
      log: connect disconnect error
}
pass {
              from: 0.0.0.0/0 to: 0.0.0.0/0
              command: bindreply udpreply
              log: connect error
}
pass {
              from: 0.0.0.0/0 to: 0.0.0.0/0 port 1-65535
              protocol: tcp udp
}
pass {
              from: 0.0.0.0/0 to: 0.0.0.0/0 port 1-65535
              command: udpassociate
}

I've spent two days time.I am very anxious.Please help me,Thanks!!!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.