iCoAP icon indicating copy to clipboard operation
iCoAP copied to clipboard

Objective-C Client Implementation of CoAP - RFC 7252

Results 3 iCoAP issues
Sort by recently updated
recently updated
newest added

Hi, We are using this library in our app and it works great! However, we are facing following issues while using the library in a multi-threaded environment, when multiple request...

``` - (IBAction)onTapSend:(id)sender { [self.textField resignFirstResponder]; ICoAPMessage *cO = [[ICoAPMessage alloc] initAsRequestConfirmable:YES requestMethod:IC_GET sendToken:YES payload:@""]; [cO addOption:IC_URI_PATH withValue:@"obs-non"]; [cO addOption:IC_OBSERVE withValue:@"0"]; if (!iExchange) { iExchange = [[ICoAPExchange alloc] initAndSendRequestWithCoAPMessage:cO toHost:@"wsncoap.org"...

Hello Stuffrabbit, I am having a file which is having a name with 2 or more special characters. When I send request JSON I don't get the proper response (response...