1 /* 2 * Copyright (c) 2019 Intel Corporation 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef __CONFIG_H__ 8 #define __CONFIG_H__ 9 10 #define SERVER_ADDR CONFIG_SAMPLE_CLOUD_AZURE_SERVER_ADDR 11 #define SERVER_PORT CONFIG_SAMPLE_CLOUD_AZURE_SERVER_PORT 12 13 #if defined(CONFIG_SOCKS) 14 #define SOCKS5_PROXY_ADDR CONFIG_SAMPLE_SOCKS_ADDR 15 #define SOCKS5_PROXY_PORT CONFIG_SAMPLE_SOCKS_PORT 16 #endif 17 18 #define MQTT_CLIENTID CONFIG_SAMPLE_CLOUD_AZURE_CLIENT_ID 19 20 #define APP_SLEEP_MSECS 8000 21 22 #define APP_MQTT_BUFFER_SIZE 1024 23 24 #endif /* __CONFIG_H__ */ 25