# File lib/packet/packet_core.rb, line 190
      def handle_read_event(p_ready_fds)
        ready_fds = p_ready_fds.flatten.compact
        ready_fds.each do |t_sock|
          if(t_sock.is_a?(UNIXSocket))
            handle_internal_messages(t_sock)
          else
            handle_external_messages(t_sock)
          end
        end
      end