|
23 | 23 | #include <string.h>
|
24 | 24 | #include <stdlib.h>
|
25 | 25 | #include <stdio.h>
|
| 26 | +#include <stdint.h> |
26 | 27 | #include "mbed_shared_queues.h"
|
27 | 28 | #include "events/EventQueue.h"
|
28 | 29 | #include "OnboardNetworkStack.h"
|
@@ -63,7 +64,7 @@ enum dns_state {
|
63 | 64 | };
|
64 | 65 |
|
65 | 66 | struct DNS_QUERY {
|
66 |
| - int unique_id; |
| 67 | + intptr_t unique_id; |
67 | 68 | nsapi_error_t status;
|
68 | 69 | NetworkStack *stack;
|
69 | 70 | char *host;
|
@@ -94,7 +95,7 @@ static void nsapi_dns_cache_reset();
|
94 | 95 | static nsapi_error_t nsapi_dns_get_server_addr(NetworkStack *stack, uint8_t *index, uint8_t *total_attempts, uint8_t *send_success, SocketAddress *dns_addr, const char *interface_name);
|
95 | 96 |
|
96 | 97 | static void nsapi_dns_query_async_create(void *ptr);
|
97 |
| -static nsapi_error_t nsapi_dns_query_async_delete(int unique_id); |
| 98 | +static nsapi_error_t nsapi_dns_query_async_delete(intptr_t unique_id); |
98 | 99 | static void nsapi_dns_query_async_send(void *ptr);
|
99 | 100 | static void nsapi_dns_query_async_timeout(void);
|
100 | 101 | static void nsapi_dns_query_async_resp(DNS_QUERY *query, nsapi_error_t status, SocketAddress *address);
|
@@ -122,7 +123,7 @@ static SingletonPtr<PlatformMutex> dns_cache_mutex;
|
122 | 123 | #endif
|
123 | 124 |
|
124 | 125 | static uint16_t dns_message_id = 1;
|
125 |
| -static int dns_unique_id = 1; |
| 126 | +static intptr_t dns_unique_id = 1; |
126 | 127 | static DNS_QUERY *dns_query_queue[DNS_QUERY_QUEUE_SIZE];
|
127 | 128 | // Protects from several threads running asynchronous DNS
|
128 | 129 | static SingletonPtr<PlatformMutex> dns_mutex;
|
@@ -638,6 +639,8 @@ void nsapi_dns_call_in_set(call_in_callback_cb_t callback)
|
638 | 639 | void nsapi_dns_reset()
|
639 | 640 | {
|
640 | 641 | nsapi_dns_cache_reset();
|
| 642 | + dns_message_id = 1; |
| 643 | + dns_unique_id = 1; |
641 | 644 | }
|
642 | 645 |
|
643 | 646 | nsapi_error_t nsapi_dns_call_in(call_in_callback_cb_t cb, int delay, mbed::Callback<void()> func)
|
@@ -765,7 +768,7 @@ nsapi_value_or_error_t nsapi_dns_query_multiple_async(NetworkStack *stack, const
|
765 | 768 |
|
766 | 769 | static void nsapi_dns_query_async_initiate_next(void)
|
767 | 770 | {
|
768 |
| - int id = INT32_MAX; |
| 771 | + intptr_t id = INTPTR_MAX; |
769 | 772 | DNS_QUERY *query = NULL;
|
770 | 773 |
|
771 | 774 | // Trigger next query to start, find one that has been on queue longest
|
@@ -842,7 +845,7 @@ static void nsapi_dns_query_async_timeout(void)
|
842 | 845 | dns_mutex->unlock();
|
843 | 846 | }
|
844 | 847 |
|
845 |
| -nsapi_error_t nsapi_dns_query_async_cancel(int id) |
| 848 | +nsapi_error_t nsapi_dns_query_async_cancel(nsapi_size_or_error_t id) |
846 | 849 | {
|
847 | 850 | dns_mutex->lock();
|
848 | 851 |
|
@@ -874,7 +877,7 @@ static void nsapi_dns_query_async_create(void *ptr)
|
874 | 877 | {
|
875 | 878 | dns_mutex->lock();
|
876 | 879 |
|
877 |
| - int unique_id = reinterpret_cast<int>(ptr); |
| 880 | + intptr_t unique_id = reinterpret_cast<intptr_t>(ptr); |
878 | 881 |
|
879 | 882 | DNS_QUERY *query = NULL;
|
880 | 883 |
|
@@ -940,7 +943,7 @@ static void nsapi_dns_query_async_create(void *ptr)
|
940 | 943 |
|
941 | 944 | }
|
942 | 945 |
|
943 |
| -static nsapi_error_t nsapi_dns_query_async_delete(int unique_id) |
| 946 | +static nsapi_error_t nsapi_dns_query_async_delete(intptr_t unique_id) |
944 | 947 | {
|
945 | 948 | int index = -1;
|
946 | 949 | DNS_QUERY *query = NULL;
|
@@ -1000,7 +1003,7 @@ static void nsapi_dns_query_async_send(void *ptr)
|
1000 | 1003 | {
|
1001 | 1004 | dns_mutex->lock();
|
1002 | 1005 |
|
1003 |
| - int unique_id = reinterpret_cast<int>(ptr); |
| 1006 | + intptr_t unique_id = reinterpret_cast<intptr_t>(ptr); |
1004 | 1007 |
|
1005 | 1008 | DNS_QUERY *query = NULL;
|
1006 | 1009 |
|
@@ -1162,7 +1165,7 @@ static void nsapi_dns_query_async_response(void *ptr)
|
1162 | 1165 | {
|
1163 | 1166 | dns_mutex->lock();
|
1164 | 1167 |
|
1165 |
| - int unique_id = reinterpret_cast<int>(ptr); |
| 1168 | + intptr_t unique_id = reinterpret_cast<intptr_t>(ptr); |
1166 | 1169 |
|
1167 | 1170 | DNS_QUERY *query = NULL;
|
1168 | 1171 |
|
|
0 commit comments