nosshproxy.c 456 B

1234567891011121314151617
  1. /*
  2. * nosshproxy.c: stub implementation of sshproxy_new_connection().
  3. */
  4. #include "putty.h"
  5. #include "network.h"
  6. const bool ssh_proxy_supported = false;
  7. Socket *sshproxy_new_connection(SockAddr *addr, const char *hostname,
  8. int port, bool privport,
  9. bool oobinline, bool nodelay, bool keepalive,
  10. Plug *plug, Conf *conf, Interactor *itr)
  11. {
  12. return NULL;
  13. }