12 lines
217 B
C
Raw Permalink Normal View History

2020-11-10 15:56:07 +01:00
#include <stdint.h>
// on the W5500 there are eight ports available
const uint8_t DHCP_SOCK = 0;
2020-11-11 14:19:02 +01:00
const uint8_t MQTT_SOCK = 1;
2020-11-15 23:51:48 +01:00
const uint8_t CMD_SOCK = 2;
2020-11-17 10:36:45 +01:00
const uint8_t SYSLOG_SOCK = 3;
2020-11-27 12:28:56 +01:00
const uint8_t DNS_SOCK = 4;