blob: aca08e73264b9896dfe7bf9bebb31ab392eb4469 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#pragma once
#ifndef CLIENTID
# define CLIENTID "my-client-id"
#endif
#ifndef HOSTNAME
# define HOSTNAME "localhost"
#endif
#ifndef PORT
# define PORT 1883
#endif
#ifndef USERNAME
# define USERNAME "user"
#endif
#ifndef PASSWORD
# define PASSWORD "password"
#endif
#ifndef TOPIC
# define TOPIC "topic"
#endif
#ifndef KEEPALIVE
# define KEEPALIVE 10
#endif
#ifndef WAIT_UNTIL_RECONNECT
# define WAIT_UNTIL_RECONNECT 10
#endif
|