mod_rayo: fix regression in ACL

This commit is contained in:
Chris Rienzo 2014-03-14 14:33:38 -04:00
parent 9946f9d5c3
commit 6f6c57ce03
1 changed files with 1 additions and 1 deletions

View File

@ -1610,7 +1610,7 @@ static void *SWITCH_THREAD_FUNC xmpp_listener_thread(switch_thread_t *thread, vo
/* check if connection is allowed */
if (listener->acl) {
if (switch_check_network_list_ip(remote_ip, listener->acl)) {
if (!switch_check_network_list_ip(remote_ip, listener->acl)) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "ACL %s denies access to %s.\n", listener->acl, remote_ip);
switch_socket_shutdown(socket, SWITCH_SHUTDOWN_READWRITE);
switch_socket_close(socket);