From: Mike Rylander Date: Mon, 28 Jul 2014 12:38:58 +0000 (-0400) Subject: Only pass simple data through the fifo, pre-store the rest X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=9aa839b464741c24eadc93a3746838de25329bfb;p=working%2FSIPServer.git Only pass simple data through the fifo, pre-store the rest Signed-off-by: Mike Rylander --- diff --git a/SIPServer.pm b/SIPServer.pm index 2be20be..46f8996 100644 --- a/SIPServer.pm +++ b/SIPServer.pm @@ -196,11 +196,6 @@ sub PERMAFROST { my $c = $$login{id}; if ($$login{success}) { - $active_connections{$c}{config} = $config; - - $active_connections{$c}{id} = $$login{id}; - $active_connections{$c}{transport} = $$login{transport}; - for my $p (keys %{ $$login{net_server_parts} }) { $active_connections{$c}{net_server}{$p} = $$login{net_server_parts}{$p}; @@ -302,7 +297,6 @@ sub mux_input { freeze({ id => $conn_id, success => $success, - transport => $transport, net_server_parts => { map { ($_ => $$self{$_}) } qw/ils state institution account/ }