Ofir
Ofir

Reputation: 8362

Using a specific network interface for a WININET HTTP request

Is there a way to specify which local network interface to use when using the WININET interface for an outgoing HTTP request?

I know how to do it with WINSOCK (using bind()), but I can't find an equivalent way to do it using WININET.

Upvotes: 1

Views: 364

Answers (1)

Sjoerd
Sjoerd

Reputation: 75588

WinInet does not support specifying the local address or port to use for TCP connections.

Upvotes: 1

Related Questions