Home
last modified time | relevance | path

Searched refs:LOG_ALERT (Results 1 – 25 of 1664) sorted by relevance

12345678910>>...67

/dports/ftp/quftp/quftp-1.0.7/
H A Dftp_directory.c32 case 500 : log(LOG_ALERT, "Server doesn't understand PWD\n"); in ftp_pwd()
38 case 502 : log(LOG_ALERT, "Server doesn't understand PWD\n"); in ftp_pwd()
41 case 421 : log(LOG_ALERT, "Service unavailable\n"); in ftp_pwd()
75 case 530 : log(LOG_ALERT, "Not logged in\n"); in ftp_cwd()
78 case 500 : log(LOG_ALERT, "Server doesn't understand CWD\n"); in ftp_cwd()
84 case 502 : log(LOG_ALERT, "Server doesn't understand CWD\n"); in ftp_cwd()
87 case 421 : log(LOG_ALERT, "Service unavailable\n"); in ftp_cwd()
113 case 530 : log(LOG_ALERT, "Not logged in\n"); in ftp_mkd()
122 case 502 : log(LOG_ALERT, "Server doesn't understand MKD\n"); in ftp_mkd()
125 case 421 : log(LOG_ALERT, "Service unavailable\n"); in ftp_mkd()
[all …]
H A Dftp_transfer.c44 case 421 : log(LOG_ALERT, "Service unavailable\n"); in ftp_get_file()
56 case 530 : log(LOG_ALERT, "Not logged in\n"); in ftp_get_file()
87 log(LOG_ALERT, "Can't restart.. fatal error!\n"); in ftp_get_file()
122 case 421 : log(LOG_ALERT, "Service unavailable\n"); in ftp_get_file()
146 case 530 : log(LOG_ALERT, "Not logged in\n"); in ftp_get_file()
244 case 421 : log(LOG_ALERT, "Server shutting down\n"); in ftp_put_file()
281 case 450 : log(LOG_ALERT, "Remote file is busy\n"); in ftp_put_file()
301 case 421 : log(LOG_ALERT, "Server shutting down\n"); in ftp_put_file()
491 log(LOG_ALERT, "Can't restart.. fatal error!\n"); in ftp_read_file()
494 log(LOG_ALERT, "Unknown error %d\n", response); in ftp_read_file()
[all …]
H A Dftp_login.c33 case 120 : log(LOG_ALERT, "Service not ready... try again later"); in ftp_login()
37 case 421 : log(LOG_ALERT, "Service unavailable\n"); in ftp_login()
41 case 500 : log(LOG_ALERT, "This server doesn't allow you to re-login\n"); in ftp_login()
44 case 502 : log(LOG_ALERT, "This server doesn't allow you to re-login\n"); in ftp_login()
63 case 530 : log(LOG_ALERT, "Not logged in as %s\n", connection->username); in ftp_login()
66 case 500 : log(LOG_ALERT, "Server doesn't understand USER\n"); in ftp_login()
70 case 501 : log(LOG_ALERT, "Server can't understand USER command\n"); in ftp_login()
74 case 421 : log(LOG_ALERT, "Service unavailable\n"); in ftp_login()
96 case 501 : log(LOG_ALERT, "Server doesn't understand PASS\n"); in ftp_login()
100 case 421 : log(LOG_ALERT, "ftp_login: Service is unavailable\n"); in ftp_login()
[all …]
H A Dftp_list.c39 log(LOG_ALERT, "ftp_list: bad response from ftp_open_data (%d)\n", in ftp_list()
62 case 450 : log(LOG_ALERT, "Could not list directory\n"); in ftp_list()
65 case 421 : log(LOG_ALERT, "Service unavailable\n"); in ftp_list()
69 case 500 : log(LOG_ALERT, "Server doesn't understand LIST\n"); in ftp_list()
75 case 502 : log(LOG_ALERT, "Server doesn't understand LIST\n"); in ftp_list()
78 case 530 : log(LOG_ALERT, "Not logged in\n"); in ftp_list()
146 case 450 : log(LOG_ALERT, "Could not list directory\n"); in ftp_nlst()
150 case 421 : log(LOG_ALERT, "Service unavailable\n"); in ftp_nlst()
154 case 500 : log(LOG_ALERT, "Server doesn't understand NLST\n"); in ftp_nlst()
162 case 502 : log(LOG_ALERT, "Server doesn't understand NLST\n"); in ftp_nlst()
[all …]
H A Dftp_data.c45 case 421 : log(LOG_ALERT, "Service unavailable\n"); in ftp_open_data_pasv()
50 case 500 : log(LOG_ALERT, "Server doesn't understand PASV\n"); in ftp_open_data_pasv()
58 case 502 : log(LOG_ALERT, "Server doesn't understand PASV\n"); in ftp_open_data_pasv()
62 case 530 : log(LOG_ALERT, "Not logged in\n"); in ftp_open_data_pasv()
66 default : log(LOG_ALERT, "Unknown response to PASV: %d\n", response); in ftp_open_data_pasv()
86 log(LOG_ALERT, "Can't open a data connection to %s\n", address); in ftp_open_data_pasv()
185 case 421 : log(LOG_ALERT, "Service unavailable\n"); in ftp_open_data()
189 case 500 : log(LOG_ALERT, "Server doesn't understand PORT\n"); in ftp_open_data()
195 case 502 : log(LOG_ALERT, "Server doesn't understand PORT\n"); in ftp_open_data()
198 case 530 : log(LOG_ALERT, "Not logged in\n"); in ftp_open_data()
[all …]
H A Dftp.c95 log(LOG_ALERT, "Can't resolve %s: %s\n", connection->hostname, HERROR); in ftp_connect()
112 log(LOG_ALERT, "Connection refused to %s\n", connection->hostname); in ftp_connect()
131 default : log(LOG_ALERT, "%s", ftp_error_message(response)); in ftp_connect()
287 if (print) log(LOG_ALERT, "Not logged in\n"); in ftp_check_ready()
291 if (print) log(LOG_ALERT, "Connection is in error state!\n"); in ftp_check_ready()
295 if (print) log(LOG_ALERT, "Server is busy. Please wait\n"); in ftp_check_ready()
350 log(LOG_ALERT, "Bad response to STAT: %s\n", buffer); in ftp_stat()
544 case 421 : log(LOG_ALERT, "%s\n", resultstring); break; in ftp_delete()
546 case 501 : log(LOG_ALERT, "Invalid parameters to DELE command\n"); break; in ftp_delete()
548 case 530 : log(LOG_ALERT, "Not logged in correctly\n"); break; in ftp_delete()
[all …]
H A Dquftp.c786 log(LOG_ALERT, "ls: Not connected\n"); in cmd_ls()
799 log(LOG_ALERT, "cd: Not connected\n"); in cmd_cd()
815 log(LOG_ALERT, "cdup: Not connected\n"); in cmd_cdup()
824 log(LOG_ALERT, "pwd: Not connected\n"); in cmd_pwd()
857 log(LOG_ALERT, "get: Not connected\n"); in cmd_get()
924 log(LOG_ALERT, "put: Not connected\n"); in cmd_put()
1010 log(LOG_ALERT, "fxp: Not connected\n"); in cmd_fxp()
1014 log(LOG_ALERT, "fxp: Not connected\n"); in cmd_fxp()
1082 log(LOG_ALERT, "go: Not connected\n"); in cmd_go()
1092 log(LOG_ALERT, "Queue cleared\n"); in cmd_clear()
[all …]
/dports/x11/gdm/gdm-3.28.4/daemon/
H A Dgdm-session-solaris-auditor.c103 syslog (LOG_AUTH | LOG_ALERT, in gdm_session_solaris_auditor_report_login()
111 syslog (LOG_AUTH | LOG_ALERT, in gdm_session_solaris_auditor_report_login()
120 syslog (LOG_AUTH | LOG_ALERT, in gdm_session_solaris_auditor_report_login()
132 syslog (LOG_AUTH | LOG_ALERT, in gdm_session_solaris_auditor_report_login()
137 syslog (LOG_AUTH | LOG_ALERT, in gdm_session_solaris_auditor_report_login()
209 syslog (LOG_AUTH | LOG_ALERT, in gdm_session_solaris_auditor_report_login_failure()
214 syslog (LOG_AUTH | LOG_ALERT, in gdm_session_solaris_auditor_report_login_failure()
256 syslog (LOG_AUTH | LOG_ALERT, in gdm_session_solaris_auditor_report_login_failure()
279 syslog (LOG_AUTH | LOG_ALERT, in gdm_session_solaris_auditor_report_logout()
282 syslog (LOG_AUTH | LOG_ALERT, in gdm_session_solaris_auditor_report_logout()
[all …]
/dports/comms/tits/tits-1.3.0/
H A Drtelnet.c274 syslog(LOG_ALERT, "rtelnet_event(): getsockopt:" in rtelnet_event()
279 syslog(LOG_ALERT, "rtelnet_event(): failed to " in rtelnet_event()
378 syslog(LOG_ALERT, "rtelnet_opt_dont(): <- DONT %s", in rtelnet_opt_dont()
432 syslog(LOG_ALERT, "rtelnet_opt_dont(): <- DONT TELOPT_EXOPL"); in rtelnet_opt_dont()
460 syslog(LOG_ALERT, "rtelnet_opt_do(): <- DO %s", TELOPT(opt)); in rtelnet_opt_do()
515 syslog(LOG_ALERT, "rtelnet_opt_do(): <- DO TELOPT_EXOPL"); in rtelnet_opt_do()
519 syslog(LOG_ALERT, "rtelnet_opt_do(): <- DO ? (option %d)", in rtelnet_opt_do()
525 syslog(LOG_ALERT, "rtelnet_opt_do(): -> %s %s", TELCMD(resp), in rtelnet_opt_do()
543 syslog(LOG_ALERT, "rtelnet_opt_wont(): <- WONT %s", in rtelnet_opt_wont()
625 syslog(LOG_ALERT, "rtelnet_opt_will(): <- WILL %s", in rtelnet_opt_will()
[all …]
/dports/mail/masqmail/masqmail-0.3.5/src/
H A Dinterface.c35 logwrite(LOG_ALERT, "local address '%s' unknown. " in init_sockaddr()
44 logwrite(LOG_ALERT, "invalid address '%s': " in init_sockaddr()
50 logwrite(LOG_ALERT, "invalid address '%s', should begin with " in init_sockaddr()
61 logwrite(LOG_ALERT, "local address '%s' unknown. " in init_sockaddr()
85 logwrite(LOG_ALERT, "socket: %s\n", strerror(errno)); in make_server_socket()
93 logwrite(LOG_ALERT, "bind: %s\n", strerror(errno)); in make_server_socket()
H A Dlocal.c70 logwrite(LOG_ALERT, "could not find password entry for " in append_file()
83 logwrite(LOG_ALERT, "could not set uid or gid for " in append_file()
94 logwrite(LOG_ALERT, "could not open file %s: %s\n", in append_file()
149 logwrite(LOG_ALERT, "could not set back uid or gid after " in append_file()
151 logwrite(LOG_ALERT, "uid=%d, gid=%d, euid=%d, egid=%d, " in append_file()
154 logwrite(LOG_ALERT, "In case of trouble, see " in append_file()
213 logwrite(LOG_ALERT, "could not open pipe '%s': %s\n", in pipe_out()
224 logwrite(LOG_ALERT, "process returned %d (%s)\n", in pipe_out()
228 logwrite(LOG_ALERT, "process got signal %d\n", in pipe_out()
/dports/sysutils/ntfy/ntfy-2.7.0-14-g0e922fa/tests/
H A Dtest_systemlog.py20 mock_post.assert_called_once_with(syslog.LOG_LOCAL5 | syslog.LOG_ALERT,
27 mock_post.assert_called_once_with(syslog.LOG_MAIL | syslog.LOG_ALERT,
41 mock_post.assert_called_once_with(syslog.LOG_LOCAL5 | syslog.LOG_ALERT,
49 call(syslog.LOG_LOCAL5 | syslog.LOG_ALERT, '[title] message'),
50 call(syslog.LOG_LOCAL5 | syslog.LOG_ALERT, 'on multiple'),
51 call(syslog.LOG_LOCAL5 | syslog.LOG_ALERT, 'lines'),
/dports/net/miredo/miredo-1.2.6/src/
H A Dserverd.c84 syslog (LOG_ALERT, _("Invalid server hostname \"%s\": %s"), in server_run()
94 syslog (LOG_ALERT, _("Fatal configuration error")); in server_run()
101 syslog (LOG_ALERT, _("Server address not specified")); in server_run()
102 syslog (LOG_ALERT, _("Fatal configuration error")); in server_run()
120 syslog (LOG_ALERT, _("Fatal configuration error")); in server_run()
157 syslog (LOG_ALERT, _("Teredo server fatal error")); in server_run()
/dports/multimedia/tvheadend/tvheadend-4.2.8/src/
H A Dtrap.c148 tvhlog_spawn(LOG_ALERT, LS_CRASH, "STACKTRACE"); in traphandler_libunwind()
162 … tvhlog_spawn (LOG_ALERT, LS_CRASH, "%s+%lx (ip=%lx sp=%lx)", buf, (long)offp, (long)ip, (long)sp); in traphandler_libunwind()
184 tvhlog_spawn(LOG_ALERT, LS_CRASH, "Signal: %d in %s ", sig, line1); in traphandler()
201 tvhlog_spawn(LOG_ALERT, LS_CRASH, "Fault address %p (%s)", in traphandler()
204 tvhlog_spawn(LOG_ALERT, LS_CRASH, "Loaded libraries: %s ", libs); in traphandler()
212 tvhlog_spawn(LOG_ALERT, LS_CRASH, "%s", tmpbuf); in traphandler()
226 tvhlog_spawn(LOG_ALERT, LS_CRASH, "STACKTRACE"); in traphandler()
233 tvhlog_spawn(LOG_ALERT, LS_CRASH, "%s+0x%tx (%s)", in traphandler()
241 tvhlog_spawn(LOG_ALERT, LS_CRASH, "%s %p %p", buf, frames[i], dli.dli_fbase); in traphandler()
246 tvhlog_spawn(LOG_ALERT, LS_CRASH, "%s %p %p", in traphandler()
[all …]
/dports/benchmarks/flowgrind/flowgrind-flowgrind-0.8.2/src/
H A Ddestination.c93 logging(LOG_ALERT, "getaddrinfo() failed: %s",
113 logging(LOG_ALERT, "failed to create listen socket: %s",
131 logging(LOG_ALERT, "listen failed: %s", strerror(errno));
173 logging(LOG_ALERT, "could not allocate memory for flow"); in getStackIndexOfNearestEnclosingCaptureCapableLambda()
185 logging(LOG_ALERT, "could not allocate memory for read/write "
207 logging(LOG_ALERT, "could not create listen socket for "
217 logging(LOG_ALERT, "failed to add listen socket: "
263 logging(LOG_ALERT, "accept() failed: %s", strerror(errno));
270 logging(LOG_ALERT, "too many file descriptors are " in isInInlineFunction()
/dports/sysutils/apcupsd/apcupsd-3.14.14/src/
H A Daction.c66 {LOG_ALERT, "Battery power exhausted."},
67 {LOG_ALERT, "Reached run time limit on batteries."},
68 {LOG_ALERT, "Battery charge below low limit."},
69 {LOG_ALERT, "Reached remaining time percentage limit on batteries."},
70 {LOG_ALERT, "Initiating system shutdown!"},
71 {LOG_ALERT, "Power is back. UPS running on mains."},
72 {LOG_ALERT, "Users requested to logoff."},
73 {LOG_ALERT, "Battery failure. Emergency."},
198 log_event(ups, LOG_ALERT, "User logins prohibited"); in prohibit_logins()
614 log_event(ups, LOG_ALERT, "UPS Self Test completed: %s", in do_action()
[all …]
/dports/sysutils/apcctrl/apcctrl-0.8.21/src/
H A Daction.c66 {LOG_ALERT, "Battery power exhausted."},
67 {LOG_ALERT, "Reached run time limit on batteries."},
68 {LOG_ALERT, "Battery charge below low limit."},
69 {LOG_ALERT, "Reached remaining time percentage limit on batteries."},
70 {LOG_ALERT, "Initiating system shutdown!"},
71 {LOG_ALERT, "Power is back. UPS running on mains."},
72 {LOG_ALERT, "Users requested to logoff."},
73 {LOG_ALERT, "Battery failure. Emergency."},
198 log_event(ups, LOG_ALERT, "User logins prohibited"); in prohibit_logins()
615 log_event(ups, LOG_ALERT, "UPS Self Test completed: %s", in do_action()
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/libphobos/libdruntime/core/sys/posix/
H A Dsyslog.d37 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
99 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
157 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
222 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
286 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
352 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
417 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
475 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
535 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
/dports/lang/gcc11/gcc-11.2.0/libphobos/libdruntime/core/sys/posix/
H A Dsyslog.d37 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
99 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
157 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
222 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
286 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
352 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
417 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
475 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
535 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
/dports/lang/gcc10/gcc-10.3.0/libphobos/libdruntime/core/sys/posix/
H A Dsyslog.d36 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
98 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
156 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
221 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
285 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
351 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
416 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
474 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
534 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
/dports/lang/gcc11-devel/gcc-11-20211009/libphobos/libdruntime/core/sys/posix/
H A Dsyslog.d37 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
99 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
157 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
222 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
286 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
352 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
417 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
475 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
535 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
/dports/devel/avr-gcc/gcc-10.2.0/libphobos/libdruntime/core/sys/posix/
H A Dsyslog.d36 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
98 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
156 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
221 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
285 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
351 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
416 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
474 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
534 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
/dports/lang/gcc10-devel/gcc-10-20211008/libphobos/libdruntime/core/sys/posix/
H A Dsyslog.d36 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
98 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
156 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
221 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
285 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
351 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
416 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
474 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
534 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
/dports/misc/cxx_atomics_pic/gcc-11.2.0/libphobos/libdruntime/core/sys/posix/
H A Dsyslog.d37 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
99 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
157 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
222 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
286 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
352 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
417 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
475 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
535 LOG_ALERT = 1, /* action must be taken immediately */ in version() enumerator
/dports/benchmarks/sysbench/sysbench-1.0.20/src/
H A Ddb_driver.c426 log_text(LOG_ALERT, "attempt to use an already closed connection"); in db_prepare()
456 log_text(LOG_ALERT, "attempt to use an already closed connection"); in db_bind_param()
473 log_text(LOG_ALERT, "attempt to use an already closed connection"); in db_bind_result()
492 log_text(LOG_ALERT, "attempt to use an already closed connection"); in db_execute()
532 log_text(LOG_ALERT, "attempt to use an already closed connection"); in db_fetch_row()
576 log_text(LOG_ALERT, "attempt to use an already closed connection"); in db_query()
638 log_text(LOG_ALERT, "attempt to use an already closed connection"); in db_free_results()
643 log_text(LOG_ALERT, "attempt to free an invalid result set"); in db_free_results()
660 log_text(LOG_ALERT, "attempt to use an already closed connection"); in db_close()
671 log_text(LOG_ALERT, "attempt to use an already closed connection"); in db_close()
[all …]

12345678910>>...67