All,

Can we have the following code added to Apache::ASP $Request object? This will allow you to add Cookie based user name logging to Apache's access log.

# Set a username (will end up in Apache access log)
$Request->user($Session->{user});

# Get username registered so far
my $user = $Request->user();

The method subroutine of the $Request object would be something like:

sub user {
 my $user = shift;
 # $this->{r} is Apache request object
 $this->{r}->$Response->{r}->user($user) if (defined $user);
 return $this->{r}->$Response->{r}->user($user);
}

Regard,
Niels



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to