Add fixme, remove copy and paste error

This commit is contained in:
Johannes Schriewer 2018-07-31 19:24:41 +02:00
parent 0be28a49d4
commit 73a810ac18

View file

@ -94,7 +94,8 @@ PlatformStatusCode platform_resolve_host(char *hostname , char *ip) {
DEBUG_LOG("Resolving host failed: %s", gai_strerror(ret)); DEBUG_LOG("Resolving host failed: %s", gai_strerror(ret));
return PlatformStatusError; return PlatformStatusError;
} }
// FIXME: we do not try to connect here, perhaps return a list or just the first
// loop through all the results and connect to the first we can // loop through all the results and connect to the first we can
for(struct addrinfo *p = servinfo; p != NULL; p = p->ai_next) { for(struct addrinfo *p = servinfo; p != NULL; p = p->ai_next) {
h = (struct sockaddr_in *)p->ai_addr; h = (struct sockaddr_in *)p->ai_addr;
@ -165,8 +166,7 @@ PlatformStatusCode platform_read(MQTTHandle *handle, Buffer *buffer) {
continue; continue;
} }
/* Set reader task to dead */ /* Some error occured */
handle->reader_alive = false;
return PlatformStatusError; return PlatformStatusError;
} }