mbed Connector Interface simplification API on top of mbed-client

Fork of mbedConnectorInterfaceV3 by Doug Anson

NOTE:

This repo has been replaced with https://github.com/ARMmbed/mbedConnectorInterface. No further updates will occur with this repo. Please use the github repo instead. Thanks!

Revision:
49:c603a22495bb
Parent:
27:b8aaf7dc7023
Child:
54:dfee8691c83a
--- a/mbed-connector-interface/OptionsBuilder.h	Mon Jun 20 20:09:44 2016 +0000
+++ b/mbed-connector-interface/OptionsBuilder.h	Thu Jun 23 22:26:15 2016 +0000
@@ -210,21 +210,21 @@
     @param cert input the server certificate
     @param cert_size input the length of the server certificate
     */
-    OptionsBuilder &setServerCertificate(uint8_t cert[],int cert_size);
+    OptionsBuilder &setServerCertificate(uint8_t *cert,int cert_size);
     
     /**
     Set the Client Certificate
     @param cert input the client certificate
     @param cert_size input the length of the client certificate
     */
-    OptionsBuilder &setClientCertificate(uint8_t cert[],int cert_size);
+    OptionsBuilder &setClientCertificate(uint8_t *cert,int cert_size);
     
     /**
     Set the Client Key
     @param key input the client key
     @param key_size input the length of the client key
     */
-    OptionsBuilder &setClientKey(uint8_t key[],int key_size);
+    OptionsBuilder &setClientKey(uint8_t *key,int key_size);
     
     /**
     Build our our immutable self