this is using the mbed os version 5-13-1

Dependencies:   mbed-http

Revision:
87:99b37d26ff2a
Parent:
84:7c7add00f4bf
Child:
89:45f6db09a76d
--- a/source/common_types.h	Thu Mar 28 23:41:10 2019 +0000
+++ b/source/common_types.h	Fri Mar 29 22:18:33 2019 +0000
@@ -120,12 +120,12 @@
 
 typedef struct {
     http_method   method;       /* POST/GET etc... */
-    string        request_URI;  /* request URI/path */
-    string        http_version; /* http verstion HTTP/1.1 */
-    string        hostName;     /* host name */
-    string        AcceptVal;    /* types accepted */
-    string        contentType;  /* content type */
-    string        contentLen;   /* content length as string   */
+    std::string   request_URI;  /* request URI/path */
+    std::string   http_version; /* http verstion HTTP/1.1 */
+    std::string   hostName;     /* host name */
+    std::string   AcceptVal;    /* types accepted */
+    std::string   contentType;  /* content type */
+    std::string   contentLen;   /* content length as string   */
     uint8_t       body[900];    /* body     */
 } http_request_t;