1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #ifndef MESSAGES_H
- #define MESSAGES_H
- #define SC_LOGIN "login: "
- #define SC_PASSWORD "Password: "
- #define SC_TIMEOUT "\r\nlogin timed out after %d seconds. Bye.\r\n"
- #define SC_EXCEEDED "Maximum login tries exceeded. Go away!\r\n"
- #define SC_RADIUS_OK "RADIUS: Authentication OK\r\n"
- #define SC_RADIUS_FAILED "RADIUS: Authentication failure\r\n"
- #define SC_LOCAL_OK "local: Authentication OK\r\n"
- #define SC_LOCAL_FAILED "local: Authentication failure\r\n"
- #define SC_NOLOGIN "\r\nSystem closed for maintenance. Try again later...\r\n"
- #define SC_SERVER_REPLY "RADIUS: %s"
- #define SC_DEFAULT_ISSUE "(\\I)\r\n\r\n\\S \\R (\\N) (port \\L)\r\n\r\n"
- #define SC_ACCT_OK "RADIUS accounting OK\r\n"
- #define SC_ACCT_FAILED "RADIUS accounting failed (RC=%i)\r\n"
- #define SC_STATUS_FAILED "RADIUS: Status failure\r\n"
- #endif
|