vote up 0 vote down star

I have an application in C# that utilizes Winhttp to make web requests. Is there a way to specify which network card WinHTTP must utilize for its connections?

flag

60% accept rate

2 Answers

vote up 0 vote down

There is no publically available option for WinHTTP or WinInet to do Interface Affinity. It appears to be supported in System.Net via the BindIPEndPointDelegate on the Request's ServicePoint.

I am curious what the scenario is to force a specific interface since it points to a problem in the rest of the stack to need such a thing.

link|flag
vote up 0 vote down

WinHTTP is at the wrong spot on the OSI model to deal with hardware level stuff like that. You're going to want to look at modifying the routing table instead.

link|flag
can you elaborate a little more on the routing tables? – webly Sep 22 at 23:47
Routing can't be properly explained in 600 characters. Google "Route Add". It's low level, and can take your system offline if used carelessly. – lod3n Sep 23 at 4:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.