Re: [guardian-dev] UDP ASSOCIATE is not working with orbot using SOCKS5

2019-01-23 Thread nanu sonu
Dear Nathan, Thanks for your reply. I will look into it and will be more thankful if I get more information of it. On Wed, Jan 23, 2019 at 11:15 PM Nathan of Guardian < nat...@guardianproject.info> wrote: > The proxy features of Orbot are provided by the Tor network. Tor's Onion > Routing

Re: [guardian-dev] UDP ASSOCIATE is not working with orbot using SOCKS5

2019-01-23 Thread Nathan of Guardian
The proxy features of Orbot are provided by the Tor network. Tor's Onion Routing protocol only supports TCP traffic. Most applications run over TCP when interacting with servers, calling APIs, downloading data. UDP is generally used for streaming media, VoIP and other applications that can

Re: [guardian-dev] UDP ASSOCIATE is not working with orbot using SOCKS5

2019-01-18 Thread Robin Tarsiger
> In send method of below given file clearly mentioning that udp can > be sent through the SOCKS5 proxy. > > > https://github.com/guardianproject/OrbotVPN/blob/master/src/com/runjva/sourceforge/jsocks/protocol/Socks5DatagramSocket.java. That repository is marked as archived, and its

Re: [guardian-dev] UDP ASSOCIATE is not working with orbot using SOCKS5

2019-01-18 Thread nanu sonu
Can someone please guide me on this? On Thu, Jan 17, 2019 at 7:40 PM nanu sonu wrote: > Dear Members, > > In send method of below given file clearly mentioning that udp can be sent > through the SOCKS5 proxy. > > >

Re: [guardian-dev] UDP ASSOCIATE is not working with orbot using SOCKS5

2019-01-17 Thread Hans-Christoph Steiner
SOCKS5 apparently supports UDP, jsocks is a SOCKS library used in Orbot. Tor does not support UDP. .hc nanu sonu: > Dear Members, > > In send method of below given file clearly mentioning that udp can be sent > through the SOCKS5 proxy. > >

Re: [guardian-dev] UDP ASSOCIATE is not working with orbot using SOCKS5

2019-01-17 Thread nanu sonu
Dear Members, In send method of below given file clearly mentioning that udp can be sent through the SOCKS5 proxy. https://github.com/guardianproject/OrbotVPN/blob/master/src/com/runjva/sourceforge/jsocks/protocol/Socks5DatagramSocket.java . I am totally confused if orbot doesn't support UDP

Re: [guardian-dev] UDP ASSOCIATE is not working with orbot using SOCKS5

2019-01-16 Thread nanu sonu
Dear Abel, When I am routing the UDP traffic through ORBOT VPN ON using UDP gateway, I am able to route the UDP traffic successfully.I want to Implement the same with ORBOT Socks Proxy without ORBOT VPN Why is it not allowing to do the same in case of ORBOT Socks Proxy. Your help is highly

Re: [guardian-dev] UDP ASSOCIATE is not working with orbot using SOCKS5

2019-01-16 Thread Abel Luck
Unfortunately, Tor only supports TCP traffic. Can you switch to TCP? nanu sonu: > Dear Members, > > Can anyone please help me on this. > > > > On Thu, Jan 10, 2019 at 5:59 PM nanu sonu wrote: > >> >> Dear Members, >> >> I am using orbot to hide the data which is sending from one of my >>

Re: [guardian-dev] UDP ASSOCIATE is not working with orbot using SOCKS5

2019-01-15 Thread nanu sonu
Dear Members, Can anyone please help me on this. On Thu, Jan 10, 2019 at 5:59 PM nanu sonu wrote: > > Dear Members, > > I am using orbot to hide the data which is sending from one of my > application. And my application is using UDP protocol. So as I have > understood that to send the udp

Re: [guardian-dev] UDP ASSOCIATE is not working with orbot using SOCKS5

2019-01-10 Thread Nathan of Guardian
On 1/10/19 7:29 AM, nanu sonu wrote: > > I am using orbot to hide the data which is sending from one of my > application. And my application is using UDP protocol. So as I have > understood that to send the udp data i have to make a connection with > server using UDP ASSOCIATE. > > Unfortunately,