Skip to content
Snippets Groups Projects
Commit 6404d5fd authored by Nigel Kukard's avatar Nigel Kukard
Browse files

Cosmetic changes

parent a88075a0
No related branches found
No related tags found
No related merge requests found
......@@ -246,6 +246,8 @@ sub server_client_disconnected
sub server_request
{
my ($kernel,$heap,$session,$request) = @_[KERNEL, HEAP, SESSION, ARG0];
my $client_session_id = $session->ID;
my $conn = $connections->{$client_session_id};
......@@ -524,9 +526,10 @@ EOF
sub _server_request_http
{
my ($kernel,$client_session_id,$request) = @_;
my $conn = $connections->{$client_session_id};
my $conn = $connections->{$client_session_id};
my $protocol = "HTTP"; # By default we're HTTP
# Pull off connection attributes
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment