summaryrefslogtreecommitdiff
path: root/usr/event_poll.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr/event_poll.c')
-rw-r--r--usr/event_poll.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/usr/event_poll.c b/usr/event_poll.c
index ffd12a3..f39f899 100644
--- a/usr/event_poll.c
+++ b/usr/event_poll.c
@@ -195,8 +195,16 @@ void event_loop(struct iscsi_ipc *ipc, int control_fd, int mgmt_ipc_fd)
if (poll_array[POLL_CTRL].revents)
ipc->ctldev_handle();
- if (poll_array[POLL_IPC].revents)
- mgmt_ipc_handle(mgmt_ipc_fd);
+ if (poll_array[POLL_IPC].revents) {
+ switch (ipc->auth_type) {
+ case ISCSI_IPC_AUTH_UID:
+ mgmt_ipc_handle_uid_only(mgmt_ipc_fd);
+ break;
+ default:
+ mgmt_ipc_handle(mgmt_ipc_fd);
+ break;
+ }
+ }
if (poll_array[POLL_ALARM].revents) {
struct signalfd_siginfo si;