mirror of
https://github.com/nikdoof/dhsd.git
synced 2025-12-13 10:22:16 +00:00
21 lines
329 B
C
21 lines
329 B
C
#ifndef __CONFIG_H__
|
|
#define __CONFIG_H__
|
|
|
|
// Config variables
|
|
|
|
#define USR_LOGIN "nikdoof"
|
|
#define USR_PASSWD "poobeast"
|
|
#define USR_HOST "doofy"
|
|
#define USR_DOM "2y.net"
|
|
#define USR_DEV "ppp0"
|
|
|
|
#define SLEEP_TIME 10
|
|
|
|
// use syslog y/n?
|
|
#define USE_SYSLOG
|
|
|
|
// use debug (no backgrounding and msgs) y/n?
|
|
#undef DEBUG
|
|
|
|
#endif
|