Is there any equivalence in C++ to the following code in Java?
String url = "http://166.111.1.2/sensor?index=" + index_value;
HttpClient client = new DefaultHttpClient();
HttpGet request = new HttpGet( url );
HttpResponse response = client.execute( request );
I want to impletement the http request in my C++ code on Linux, but I cannot find a way to do it. I can use the HttpClient Class on Windows platform though.