pproxy.c 504 B

123456789101112131415161718
  1. /*
  2. * pproxy.c: dummy implementation of platform_new_connection(), to
  3. * be supplanted on any platform which has its own local proxy
  4. * method.
  5. */
  6. #include "putty.h"
  7. #include "network.h"
  8. #include "proxy.h"
  9. Socket *platform_new_connection(SockAddr *addr, const char *hostname,
  10. int port, int privport,
  11. int oobinline, int nodelay, int keepalive,
  12. Plug *plug, Conf *conf, Interactor *itr)
  13. {
  14. return NULL;
  15. }