/NetX-Duo-v6.2.1/addons/azure_iot/docs/ |
D | azure_rtos_iot_adu_agent.md | 22 …o determine if the update is installed or not, typically it is a version string (1.0.0). The insta… 30 | manufacturer [in] | A pointer to the manufacturer. Must be NULL terminated string. | 32 | model [in] | A pointer to the model. Must be NULL terminated string. | 34 … [in] | A pointer to the installed criteria string, such as: version string. Must be NULL termina… 69 …if the update is installed or not, the installed criteria may be version string. If the installed … 76 | manufacturer [in] | A pointer to the manufacturer. Must be NULL terminated string. | 78 | model [in] | A pointer to the model. Must be NULL terminated string. | 80 … [in] | A pointer to the installed criteria string, such as: version string. Must be NULL termina…
|
D | azure_rtos_iot_json.md | 306 <div style="text-align: right">Gets the JSON token's string</div> 316 <p>Gets the JSON token's string after unescaping it, if required.</p> 323 | buffer_ptr [out] | A pointer to a buffer where the string should be copied into. | 325 …s the number of bytes written to the destination which denote the length of the unescaped string. | 328 * NX_AZURE_IOT_SUCCESS The string is returned. 402 * NX_AZURE_IOT_READER_TOKEN_STRING The token kind is a JSON string. 624 <div style="text-align: right">Appends the UTF-8 property name and value where value is string</div> 634 <p>Appends the UTF-8 property name and value where value is string.</p> 646 * NX_AZURE_IOT_SUCCESS The property name and string value was appended successfully. 690 <div style="text-align: right">Appends the UTF-8 text value (as a JSON string) into the buffer</div> [all …]
|
D | azure_rtos_iot.md | 22 | name_ptr [in] | A pointer to a NULL-terminated string indicating the name of the Azure IoT i…
|
D | azure_rtos_iot_hub_client_properties.md | 177 …ription detailing the context or any details about the acknowledgement. This can be empty string. |
|
D | azure_rtos_iot_provisioning_client.md | 29 | endpoint [in] | A pointer to IoT Provisioning endpoint. Must be NULL terminated string. |
|
D | azure_rtos_iot_hub_client.md | 97 | host_name [in] | A pointer to IoTHub hostname. Must be NULL terminated string. |
|
/NetX-Duo-v6.2.1/test/regression/mdns_test/ |
D | netx_mdns_domain_name_test.c | 225 UCHAR *string, *domain; in my_packet_process() local 252 string = packet_ptr -> nx_packet_prepend_ptr + 40; in my_packet_process() 255 for(domain = string + strlen(string) - 1; domain >= string; domain--) in my_packet_process()
|
/NetX-Duo-v6.2.1/common/src/ |
D | nx_http_proxy_client.c | 184 UCHAR string[NX_HTTP_PROXY_MAX_USERNAME + NX_HTTP_PROXY_MAX_PASSWORD + 2]; in _nx_http_proxy_client_enable() local 220 memcpy(string, username, username_length); /* Use case of memcpy is verified. */ in _nx_http_proxy_client_enable() 223 string[username_length] = ':'; in _nx_http_proxy_client_enable() 226 …memcpy(&string[username_length + 1], password, password_length); /* Use case of memcpy is verified… in _nx_http_proxy_client_enable() 229 string[username_length + password_length + 1] = NX_NULL; in _nx_http_proxy_client_enable() 232 status = _nx_utility_base64_encode((UCHAR *)string, username_length + password_length + 1, in _nx_http_proxy_client_enable()
|
/NetX-Duo-v6.2.1/addons/azure_iot/samples/ |
D | README.md | 10 …entication. After device's registration is complete, copy the connection string for the device wit… 13 #define HOST_NAME "<Hostname from connection string>" 14 #define DEVICE_ID "<DeviceId from connection string>" 15 #define DEVICE_SYMMETRIC_KEY "<SharedAccessKey from connection string>" 33 …get-started). After device registration is complete, copy the connection string for the device wit… 36 #define HOST_NAME "<Hostname from connection string>" 37 #define DEVICE_ID "<DeviceId from connection string>"
|
/NetX-Duo-v6.2.1/addons/http/ |
D | nxd_http_server.c | 8904 UINT _nx_http_server_date_to_string(NX_HTTP_SERVER_DATE *date, CHAR *string) in _nx_http_server_date_to_string() argument 8911 string[index++] = *(_nx_http_server_weekday[date -> nx_http_server_weekday]); in _nx_http_server_date_to_string() 8912 string[index++] = *(_nx_http_server_weekday[date -> nx_http_server_weekday] + 1); in _nx_http_server_date_to_string() 8913 string[index++] = *(_nx_http_server_weekday[date -> nx_http_server_weekday] + 2); in _nx_http_server_date_to_string() 8914 string[index++] = ','; in _nx_http_server_date_to_string() 8915 string[index++] = ' '; in _nx_http_server_date_to_string() 8918 _nx_http_server_date_convert(date -> nx_http_server_day, 2, &string[index]); in _nx_http_server_date_to_string() 8920 string[index++] = ' '; in _nx_http_server_date_to_string() 8923 string[index++] = *(_nx_http_server_month[date -> nx_http_server_month]); in _nx_http_server_date_to_string() 8924 string[index++] = *(_nx_http_server_month[date -> nx_http_server_month] + 1); in _nx_http_server_date_to_string() [all …]
|
D | nxd_http_client.c | 3297 UINT _nx_http_client_number_convert(UINT number, CHAR *string) in _nx_http_client_number_convert() argument 3306 string[0] = '0'; in _nx_http_client_number_convert() 3320 string[j] = string[j-1]; in _nx_http_client_number_convert() 3330 string[0] = (CHAR) (digit + 0x30); in _nx_http_client_number_convert() 3337 string[size] = (CHAR) NX_NULL; in _nx_http_client_number_convert() 3345 string[0] = '0'; in _nx_http_client_number_convert()
|
D | nxd_http_client.h | 287 UINT _nx_http_client_number_convert(UINT number, CHAR *string);
|
D | nxd_http_server.h | 641 UINT _nx_http_server_date_to_string(NX_HTTP_SERVER_DATE *date, CHAR *string); 642 VOID _nx_http_server_date_convert(UINT date, UINT count, CHAR *string);
|
/NetX-Duo-v6.2.1/addons/web/ |
D | nx_web_http_server.c | 10440 UINT _nx_web_http_server_date_to_string(NX_WEB_HTTP_SERVER_DATE *date, CHAR *string) in _nx_web_http_server_date_to_string() argument 10447 string[index++] = _nx_web_http_server_weekday[date -> nx_web_http_server_weekday][0]; in _nx_web_http_server_date_to_string() 10448 string[index++] = _nx_web_http_server_weekday[date -> nx_web_http_server_weekday][1]; in _nx_web_http_server_date_to_string() 10449 string[index++] = _nx_web_http_server_weekday[date -> nx_web_http_server_weekday][2]; in _nx_web_http_server_date_to_string() 10450 string[index++] = ','; in _nx_web_http_server_date_to_string() 10451 string[index++] = ' '; in _nx_web_http_server_date_to_string() 10454 _nx_web_http_server_date_convert(date -> nx_web_http_server_day, 2, &string[index]); in _nx_web_http_server_date_to_string() 10456 string[index++] = ' '; in _nx_web_http_server_date_to_string() 10459 string[index++] = _nx_web_http_server_month[date -> nx_web_http_server_month][0]; in _nx_web_http_server_date_to_string() 10460 string[index++] = _nx_web_http_server_month[date -> nx_web_http_server_month][1]; in _nx_web_http_server_date_to_string() [all …]
|
D | nx_web_http_client.c | 6594 UINT _nx_web_http_client_number_convert(UINT number, CHAR *string) in _nx_web_http_client_number_convert() argument 6603 string[0] = '0'; in _nx_web_http_client_number_convert() 6617 string[j] = string[j-1]; in _nx_web_http_client_number_convert() 6627 string[0] = (CHAR) (digit + 0x30); in _nx_web_http_client_number_convert() 6634 string[size] = (CHAR) NX_NULL; in _nx_web_http_client_number_convert() 6642 string[0] = '0'; in _nx_web_http_client_number_convert()
|
D | nx_web_http_server.h | 644 UINT _nx_web_http_server_date_to_string(NX_WEB_HTTP_SERVER_DATE *date, CHAR *string); 645 VOID _nx_web_http_server_date_convert(UINT date, UINT count, CHAR *string);
|
D | nx_web_http_client.h | 637 UINT _nx_web_http_client_number_convert(UINT number, CHAR *string);
|
/NetX-Duo-v6.2.1/docs/ |
D | revision_history.txt | 16 Files are modified to improve string length verification: 29 File is created to improve string length verification: 3878 … nx_secure_x509_oid_parse.c Parsed a DER-encoded Object Identifier string. 4094 demo_netx_auto_ip.c Improved string length verification. 4098 bsd_demo_raw.c Improved string length verification. 4099 bsd_demo_tcp.c Improved string length verification. 4100 bsd_demo_udp.c Improved string length verification. 4112 nxd_dhcp_client.c Improved string length verification. 4119 nxd_dhcp_server.c Improved string length verification. 4121 demo_netxduo_dhcpv6.c Improved string length verification. [all …]
|
/NetX-Duo-v6.2.1/addons/BSD/ |
D | nxd_bsd.c | 172 static INT bsd_string_to_number(const CHAR *string, UINT *number); 173 static ULONG _nx_bsd_string_length(CHAR * string); 201 UINT bsd_number_convert(UINT number, CHAR *string, ULONG buffer_len, UINT base); 5849 UINT bsd_number_convert(UINT number, CHAR *string, ULONG buffer_len, UINT base) in bsd_number_convert() argument 5869 string[j] = string[j-1]; in bsd_number_convert() 5880 string[0] = (CHAR) (digit + 0x30); in bsd_number_convert() 5882 string[0] = (CHAR) (digit + 0x57); in bsd_number_convert() 5893 string[size] = (CHAR) NX_NULL; in bsd_number_convert() 5901 string[0] = '0'; in bsd_number_convert() 14922 static INT bsd_string_to_number(const CHAR *string, UINT *number) in bsd_string_to_number() argument [all …]
|