Commit f27dc416 authored by rl1987's avatar rl1987 Committed by Nick Mathewson
Browse files

Remove prop229 stuff from socks5.trunnel

parent 2f284d33
Loading
Loading
Loading
Loading
+526 −1602

File changed.

Preview size limit exceeded, changes collapsed.

+0 −376

File changed.

Preview size limit exceeded, changes collapsed.

+0 −22
Original line number Diff line number Diff line
@@ -92,25 +92,3 @@ struct socks4_server_reply {
   u32 addr;
}
// And here's the extended stuff from proposal 229

struct tor_socksauth_keyval {
  u16 keylen;
  char key[keylen];
  u16 vallen;
  char val[vallen];
}

struct tor_extended_socks_auth_request {
  u8 version IN [1];
  u16 npairs;
  struct tor_socksauth_keyval pairs[npairs];
}

struct tor_extended_socks_auth_response {
  u8 version IN [1];
  u8 status;
  u16 npairs;
  struct tor_socksauth_keyval pairs[npairs];
}