blob: 1e4e4545d83beaa7db7182d36bd116261dfe3399 (
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
34
35
36
37
|
#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 TOPIC2
# define TOPIC2 "topic2"
#endif
#ifndef KEEPALIVE
# define KEEPALIVE 10
#endif
#ifndef WAIT_UNTIL_RECONNECT
# define WAIT_UNTIL_RECONNECT 10
#endif
|