user mode driver (umdf) c++ http request

281 Views Asked by At

I have developed a umdf2 driver and in some point it needs to communicate to a remote server to fetch some data. I am wondering is there any easy way (e.g. library) to do the http requests (GET, POST) in Windows user mode? I have never used winsock2 and I am not sure how easy/possible it's to use it?

Currently, I am using a kind of Pipe to hand this job to another app that resides upper level and uses Windows SDK to do this smoothly.

Any advice is greatly appreciated.

1

There are 1 best solutions below

2
On