view release on metacpan or search on metacpan
Client/lib/HTTunnel/Client.pm view on Meta::CPAN
if ($this->{__PACKAGE__}->{proto} eq 'udp'){
($addr, $port, $data) = split(':', $data, 3) ;
$this->{__PACKAGE__}->{peer_info} = "$addr:$port" ;
}
} ;
if ((ref($@))&&(UNIVERSAL::isa($@, "HTTunnel::Client::TimeoutException"))){
next ;
}
elsif ($@){
die("$@\n") ;
}
Client/lib/HTTunnel/Client.pm view on Meta::CPAN
}
elsif ($code eq 'okd'){
return substr($content, 3) ;
}
elsif ($code eq 'okt'){
die(bless({}, "HTTunnel::Client::TimeoutException")) ;
}
else{
croak("Invalid Apache::HTTunnel response code '$code'") ;
}
}
view all matches for this distribution
view release on metacpan or search on metacpan
If C<cancel> returns true, then it has successfully
invoked the database engine's own cancel function. If it returns false,
then C<cancel> failed. If it returns C<undef>, then the database
driver does not have cancel implemented.
=item Timeout
The traditional way to implement a timeout is to set C<$SIG{ALRM}>
to refer to some code that will be executed when an ALRM signal
arrives and then to call alarm($seconds) to schedule an ALRM signal
to be delivered $seconds in the future. For example:
view all matches for this distribution
view release on metacpan or search on metacpan
=item STREAM_TIMEOUT
(int) If anything but 0, this returns the number in seconds of how long a file
will stream before timing out, otherwise returns an empty string. Set by
PerlSetVar StreamTimeout. Used for demos or in cases when streaming an entire
song would not be appropriate or illegal.
=item UNSELECT_ALL_MP3S_SCRIPT
(string) JavaScript that Unchecks all the checkboxes generated by
view all matches for this distribution
view release on metacpan or search on metacpan
return $d !~ /$NO/oi;
}
# whether to time out streams
sub stream_timeout {
shift->r->dir_config('StreamTimeout') || 0;
}
# how long an album list is considered so long we should put buttons
# at the top as well as the bottom
sub file_list_is_long { shift->r->dir_config('LongList') || 10 }
AllowDownload yes|no yes
AllowStream yes|no yes
AllowPlayLocally yes|no yes
CheckStreamClient yes|no no
ReadMP3Info yes|no yes
StreamTimeout integer 0
DIRECTORY OPTIONS
BaseDir URL /apache_mp3
CacheDir path -none-
HelpImgURL URL apache_mp3_fig1.gif:374x292
If "no" is specified, all fields in the directory listing will be
blank except for I<filename> and I<description>, which will both be
set to the physical filename of the MP3 file.
=item StreamTimeout I<integer>
For demo mode, you can specify a stream timeout in seconds.
Apache::MP3 will cease streaming the file after the time specified.
Because this feature uses the average bitrate of the song, it may be
off by a second or two when streaming variable bitrate MP3s.
view all matches for this distribution
view release on metacpan or search on metacpan
return SERVER_ERROR;
}
my $ph = Net::PH->new($attr->{host},
Port=>$attr->{port},
Timeout=>$attr->{timeout});
unless( $ph ) {
$r->log_reason("PH failed to connect to CCSO host: " . $attr->{host} . $attr->{port} . $attr->{timeout}, $r->uri);
return SERVER_ERROR;
}
view all matches for this distribution
view release on metacpan or search on metacpan
t/samples/sample.httpd.conf view on Meta::CPAN
AgentLog logs/agent.log
PidFile logs/httpd.pid
ScoreBoardFile logs/apache_runtime_status
ServerName www.sample.org
UseCanonicalName on
Timeout 120
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
MinSpareServers 5
MaxSpareServers 10
StartServers 5
MaxClients 50
MaxRequestsPerChild 30
view all matches for this distribution
view release on metacpan or search on metacpan
to scan the files.
I decided for a solution in mod_perl and Apache at the point I found
the ProxyPass Example in "Writing Apache Mopdules with Perl and C" from O'Reily and the easy way to move the request and response headers between Apache and
LWP::UserAgent.
Timeouts
--------
*fix this for ProxyScanPredeliverSize*
OK, and here the special sections about timeouts:
Users are used to get a growing download bar when the start a download.
We don't deliver a byte of the downloaded file until we know if it is clean
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache/SdnFw/bin/conf.pl view on Meta::CPAN
BrowserMatch "JDK/1\.0" force-response-1.0
AddType application/x-httpd-php .php
#SSLSessionCache dbm:/var/cache/httpd/ssl_cache
#SSLSessionCacheTimeout 300
#ProxyRequests Off
END
view all matches for this distribution
view release on metacpan or search on metacpan
SearchEngineLog.pm view on Meta::CPAN
if (($time - $TIMEOUT) < $LASTPING)
{
return 1;
}
$l->debug ('Apache::SearchEngineLog: Timeout reached, pinging');
if ($DBH->ping ())
{
$LASTPING = $time;
return 1;
view all matches for this distribution
view release on metacpan or search on metacpan
$cred = $self->getCredentials($r);
$resp = $self->validateCredentials($r, $cred);
unless (ref($resp)) { $log->error($resp); return SERVER_ERROR; }
unless ($resp->{renew}) { # make sure credentials are sufficiently fresh
$log->warn("Timeout before renewal."); # or replay attempt?
if ($msg = $resp->{message}) { $log->info($msg); }
unless ($resp->{uri}) { return SERVER_ERROR; }
$r->header_out(Location => $resp->{uri});
return REDIRECT;
}
authenURL => Where to go to get the appropriate credentials for a requested
resource.
defaultURL => Where to go after logging in (if no initial request was made).
timeoutURL => Where to go to delete credentials. Timeouts and signouts
are both sent here.
=head2 URL Chaining Arguments
chainURLS => <arrayref>, issueURL => <string>
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache/Session/Counted.pm view on Meta::CPAN
# warn "surl[$surl]";
if ($surl) {
require LWP::UserAgent;
require HTTP::Request::Common;
my $ua = LWP::UserAgent->new;
$ua->timeout($session->{args}{Timeout} || 10);
my $req = HTTP::Request::Common::GET $surl;
my $result = $ua->request($req);
if ($result->is_success) {
$content = $result->content;
} else {
lib/Apache/Session/Counted.pm view on Meta::CPAN
DirLevels => <number of dirlevels>,
CounterFile => <filename for File::CounterFile>,
AlwaysSave => <boolean>,
HostID => <string>,
HostURL => <callback>,
Timeout => <seconds>,
}
=head1 DESCRIPTION
This session module is based on Apache::Session, but it persues a
lib/Apache/Session/Counted.pm view on Meta::CPAN
sprintf "http://%s/?SESSIONID=%s", <host>, <session-ID>;
The callback can return false to signal that there is no session to
retrieve (e.g. when the host or id argument is illegal).
=item Timeout
Sets the timeout for LWP::UserAgent for retrieving a session from a
different host. Default is 10 seconds.
=back
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Module/Install/Fetch.pm view on Meta::CPAN
if (eval { require LWP::Simple; 1 }) {
LWP::Simple::mirror($args{url}, $file);
}
elsif (eval { require Net::FTP; 1 }) { eval {
# use Net::FTP to get past firewall
my $ftp = Net::FTP->new($host, Passive => 1, Timeout => 600);
$ftp->login("anonymous", 'anonymous@example.com');
$ftp->cwd($path);
$ftp->binary;
$ftp->get($file) or (warn("$!\n"), return);
$ftp->quit;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache/Session/Lock/Sybase.pm view on Meta::CPAN
local $self->{dbh}->{RaiseError} = 1;
$self->{lockid} = "Apache-Session-$session->{data}->{_session_id}";
my $sth = $self->{dbh}->prepare(q{sp_getapplock @Resource = '}.$self->{lockid}.q{',@LockMode='Exclusive',@LockOwner='Session',@LockTimeout = '3600000'});
$sth->execute() || die $DBI::errstr;
$self->{lock} = 1;
}
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Module/Install/Fetch.pm view on Meta::CPAN
if (eval { require LWP::Simple; 1 }) {
LWP::Simple::mirror($args{url}, $file);
}
elsif (eval { require Net::FTP; 1 }) { eval {
# use Net::FTP to get past firewall
my $ftp = Net::FTP->new($host, Passive => 1, Timeout => 600);
$ftp->login("anonymous", 'anonymous@example.com');
$ftp->cwd($path);
$ftp->binary;
$ftp->get($file) or (warn("$!\n"), return);
$ftp->quit;
view all matches for this distribution
view release on metacpan or search on metacpan
my $verbose = $config{'DbVerbose'};
my $hostname = hostname;
($hostname) = split(/\./, $hostname);
my $timeout = $config{'DbTimeout'} || 30;
if(ct_config(CS_SET, CS_TIMEOUT, $timeout, CS_INT_TYPE) != CS_SUCCEED) {
warn "[ConPool] ct_config(CS_TIMEOUT) failed\n";
}
my $max_connect = $config{'DbNumConnect'} || 40;
my $sleep = 0;
my %ignore;
my $sleepTime = $config{'DbSleepTime'} || 0.25;
my $semTimeout = $config{'SemTimeout'} || 30;
my $now = time;
eval {
my $h = Sys::Signal->set(ALRM => sub { die "Timeout\n"; } );
alarm($semTimeout);
$r = $sem->op(0, -1, 0);
alarm(0);
};
if($@ && $@ =~ /Timeout/) {
warn "[ConPool] semaphore timed out for $srv\n";
return undef;
}
my $diff = time - $now;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache/TestRequest.pm view on Meta::CPAN
if ($module and ($module =~ /ssl/ || $module eq 'h2')) {
require IO::Socket::SSL;
# Add all conn_opts to args
map {$args{$_} = $conn_opts->{$_}} keys %{$conn_opts};
return IO::Socket::SSL->new(%args, Timeout => UA_TIMEOUT);
}
else {
require IO::Socket;
return IO::Socket::INET->new(%args);
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache/UploadMeter/Resources/JavaScript.pm view on Meta::CPAN
this.transport.open(this.method.toUpperCase(), this.url,
this.options.asynchronous);
if (this.options.asynchronous)
setTimeout(function() { this.respondToReadyState(1) }.bind(this), 10);
this.transport.onreadystatechange = this.onStateChange.bind(this);
this.setRequestHeaders();
var body = this.method == 'post' ? (this.options.postBody || params) : null;
lib/Apache/UploadMeter/Resources/JavaScript.pm view on Meta::CPAN
receiver.update(response);
}
if (this.success()) {
if (this.onComplete)
setTimeout(this.onComplete.bind(this), 10);
}
}
});
Ajax.PeriodicalUpdater = Class.create();
lib/Apache/UploadMeter/Resources/JavaScript.pm view on Meta::CPAN
this.onTimerEvent();
},
stop: function() {
this.updater.options.onComplete = undefined;
clearTimeout(this.timer);
(this.onComplete || Prototype.emptyFunction).apply(this, arguments);
},
updateComplete: function(request) {
if (this.options.decay) {
this.decay = (request.responseText == this.lastText ?
this.decay * this.options.decay : 1);
this.lastText = request.responseText;
}
this.timer = setTimeout(this.onTimerEvent.bind(this),
this.decay * this.frequency * 1000);
},
onTimerEvent: function() {
this.updater = new Ajax.Updater(this.container, this.url, this.options);
lib/Apache/UploadMeter/Resources/JavaScript.pm view on Meta::CPAN
},
update: function(element, html) {
html = typeof html == 'undefined' ? '' : html.toString();
$(element).innerHTML = html.stripScripts();
setTimeout(function() {html.evalScripts()}, 10);
return element;
},
replace: function(element, html) {
element = $(element);
lib/Apache/UploadMeter/Resources/JavaScript.pm view on Meta::CPAN
var range = element.ownerDocument.createRange();
range.selectNodeContents(element);
element.parentNode.replaceChild(
range.createContextualFragment(html.stripScripts()), element);
}
setTimeout(function() {html.evalScripts()}, 10);
return element;
},
inspect: function(element) {
element = $(element);
lib/Apache/UploadMeter/Resources/JavaScript.pm view on Meta::CPAN
$A(div.childNodes).each(
function(node){ element.appendChild(node) });
} else {
element.innerHTML = html.stripScripts();
}
setTimeout(function() {html.evalScripts()}, 10);
return element;
}
};
Object.extend(Element, Element.Methods);
lib/Apache/UploadMeter/Resources/JavaScript.pm view on Meta::CPAN
this.range = this.element.ownerDocument.createRange();
if (this.initializeRange) this.initializeRange();
this.insertContent([this.range.createContextualFragment(this.content)]);
}
setTimeout(function() {content.evalScripts()}, 10);
},
contentFromAnonymousTable: function() {
var div = document.createElement('div');
div.innerHTML = '<table><tbody>' + this.content + '</tbody></table>';
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache/Voodoo/Engine.pm view on Meta::CPAN
elsif ($session->has_expired($conf->{'session_timeout'})) {
# the session has expired
$self->{'mp'}->set_cookie($conf->{'cookie_name'},'!','now');
$session->destroy;
Apache::Voodoo::Exception::Application::SessionTimeout->throw(
target => $self->_adjust_url("/timeout"),
error => "Session has expired"
);
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache/WebSNMP.pm view on Meta::CPAN
'ipInDiscards' => "1.3.6.1.2.4.8",
'ipInDelivers' => "1.3.6.1.2.4.9",
'ipOutRequests' => "1.3.6.1.2.4.10",
'ipOutDiscards' => "1.3.6.1.2.4.11",
'ipOutNoRoutes' => "1.3.6.1.2.4.12",
'ipReasmTimeout' => "1.3.6.1.2.4.13",
'ipReasmReqds' => "1.3.6.1.2.4.14",
'ipReasmOKs' => "1.3.6.1.2.4.15",
'ipReasmFails' => "1.3.6.1.2.4.16",
'ipFragOKs' => "1.3.6.1.2.4.17",
'ipFragFails' => "1.3.6.1.2.4.18",
lib/Apache/WebSNMP.pm view on Meta::CPAN
'ipInDiscards' => "1.3.6.1.2.4.8",
'ipInDelivers' => "1.3.6.1.2.4.9",
'ipOutRequests' => "1.3.6.1.2.4.10",
'ipOutDiscards' => "1.3.6.1.2.4.11",
'ipOutNoRoutes' => "1.3.6.1.2.4.12",
'ipReasmTimeout' => "1.3.6.1.2.4.13",
'ipReasmReqds' => "1.3.6.1.2.4.14",
'ipReasmOKs' => "1.3.6.1.2.4.15",
'ipReasmFails' => "1.3.6.1.2.4.16",
'ipFragOKs' => "1.3.6.1.2.4.17",
'ipFragFails' => "1.3.6.1.2.4.18",
view all matches for this distribution
view release on metacpan or search on metacpan
Wyrd/Services/FileCache.pm view on Meta::CPAN
PerlSetVar NoFileCache 1
The time between checks is also confiruable using a PerlSetVar directive:
PerlSetVar FileCacheTimeout x
Where x is a number of seconds.
=head1 FLAGS
Wyrd/Services/FileCache.pm view on Meta::CPAN
my $force_load = 0;
if ($self->can('dbl')) {#we're in a Wyrd, so we can check the dir_config;
if ($self->dbl->req->dir_config('NoFileCache')) {
$force_load = 1;
}
$new_timeout = $self->dbl->req->dir_config('FileCacheTimeout')
}
#NB use or flip-flop for $new_timeout so that the dir-config value does not persist
#across different directory boundaries.
if ($force_load or ($_previous_checktime_register < ($time - ($new_timeout || $timeout)))) {
#$self->_info("checking $file against file cache");
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Module/Install/Fetch.pm view on Meta::CPAN
if (eval { require LWP::Simple; 1 }) {
LWP::Simple::mirror($args{url}, $file);
}
elsif (eval { require Net::FTP; 1 }) { eval {
# use Net::FTP to get past firewall
my $ftp = Net::FTP->new($host, Passive => 1, Timeout => 600);
$ftp->login("anonymous", 'anonymous@example.com');
$ftp->cwd($path);
$ftp->binary;
$ftp->get($file) or (warn("$!\n"), return);
$ftp->quit;
view all matches for this distribution
view release on metacpan or search on metacpan
demo/conf/httpd-perl.conf view on Meta::CPAN
## iNcom Server - Configuration File
ServerType standalone
PidFile run/httpd.pid
ScoreBoardFile run/httpd.scoreboard
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
MinSpareServers 5
MaxSpareServers 10
StartServers 5
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache2/API/Status.pm view on Meta::CPAN
507 => "Unzureichende Lagerung",
508 => "Schleife erkannt",
509 => "Bandbreitenlimit überschritten",
510 => "Nicht erweitert",
511 => "Netzwerkauthentifizierung erforderlich",
599 => "Timeout-Fehler bei Netzwerkverbindung",
},
'en_GB' =>
{
100 => "Continue",
101 => "Switching Protocols",
lib/Apache2/API/Status.pm view on Meta::CPAN
403 => "Forbidden",
404 => "Not Found",
405 => "Method Not Allowed",
406 => "Not Acceptable",
407 => "Proxy Authentication Required",
408 => "Request Timeout",
409 => "Conflict",
410 => "Gone",
411 => "Length Required",
412 => "Precondition Failed",
413 => "Payload Too Large",
lib/Apache2/API/Status.pm view on Meta::CPAN
499 => "Client Closed Request",
500 => "Internal Server Error",
501 => "Not Implemented",
502 => "Bad Gateway",
503 => "Service Unavailable",
504 => "Gateway Timeout",
505 => "HTTP Version Not Supported",
506 => "Variant Also Negotiates",
507 => "Insufficient Storage",
508 => "Loop Detected",
509 => "Bandwidth Limit Exceeded",
510 => "Not Extended",
511 => "Network Authentication Required",
599 => "Network Connect Timeout Error",
},
'fr_FR' =>
{
100 => "Continuer",
101 => "Changement de protocole",
lib/Apache2/API/Status.pm view on Meta::CPAN
See L<rfc 7231, section 6.5.7|https://tools.ietf.org/html/rfc7231#section-6.5.7>
This is returned to indicate the request took too long to be received and timed out. For example:
HTTP/1.1 408 Request Timeout
Connection: close
Content-Type: text/plain
Content-Length: 19
Too slow! Try again
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Module/Install/Fetch.pm view on Meta::CPAN
if (eval { require LWP::Simple; 1 }) {
LWP::Simple::mirror($args{url}, $file);
}
elsif (eval { require Net::FTP; 1 }) { eval {
# use Net::FTP to get past firewall
my $ftp = Net::FTP->new($host, Passive => 1, Timeout => 600);
$ftp->login("anonymous", 'anonymous@example.com');
$ftp->cwd($path);
$ftp->binary;
$ftp->get($file) or (warn("$!\n"), return);
$ftp->quit;
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Module/Install/Fetch.pm view on Meta::CPAN
if (eval { require LWP::Simple; 1 }) {
LWP::Simple::mirror($args{url}, $file);
}
elsif (eval { require Net::FTP; 1 }) { eval {
# use Net::FTP to get past firewall
my $ftp = Net::FTP->new($host, Passive => 1, Timeout => 600);
$ftp->login("anonymous", 'anonymous@example.com');
$ftp->cwd($path);
$ftp->binary;
$ftp->get($file) or (warn("$!\n"), return);
$ftp->quit;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache2/AuthAny.pm view on Meta::CPAN
args_how => Apache2::Const::TAKE1,
errmsg => 'Basic auth .htpasswd file',
},
{
name => 'AuthAnyTimeout',
args_how => Apache2::Const::TAKE1,
errmsg => 'seconds',
},
lib/Apache2/AuthAny.pm view on Meta::CPAN
sub AuthAnyBasicAuthUserFile {
my ($self, $params, $arg) = @_;
$self->{AuthAnyBasicAuthUserFile} = $arg;
}
=head2 AuthAnyTimeout
This directive allows a default timeout to be set, after which
an "authenticated" user will become only "recognized". The value
set by AuthAnyTimeout can be overridden for any identified user
by specifying a "timeout" value in the "auth_user" db table.
=cut
sub AuthAnyTimeout {
my ($self, $params, $arg) = @_;
$self->{AuthAnyTimeout} = $arg;
}
=head2 AuthType auth-any (required)
This directive turns AuthAny on and causes AuthAny's environment
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Apache2/AuthCAS.pm view on Meta::CPAN
"ErrorUrl" => "http://localhost/cas/error/",
"SessionCleanupThreshold" => 10,
"SessionCookieName" => "APACHECAS",
"SessionCookieDomain" => undef,
"SessionCookieSecure" => 0,
"SessionTimeout" => 1800,
"RemoveTicket" => 0,
"NumProxyTickets" => 0,
"DbDriver" => "Pg",
"DbDataSource" => "dbname=apache_cas;host=localhost;port=5432",
lib/Apache2/AuthCAS.pm view on Meta::CPAN
# try to get a session record for the session id we received
# session_data - session id, last accessed, netid, pgtiou
if (my($last_accessed, $user, $pgt) = $self->get_session_data($sid))
{
# make sure the session is still valid
if ($last_accessed + $self->casConfig("SessionTimeout") >= time())
{
# session is still valid
$self->logMsg("session '$sid' is still valid", $LOG_DEBUG);
# record the last time the session was accessed
lib/Apache2/AuthCAS.pm view on Meta::CPAN
# delete expired sessions
sub delete_expired_sessions($)
{
my($self) = @_;
my $oldestValidTime = time() - $self->casConfig("SessionTimeout");
$self->logMsg("deleting sessions older than '$oldestValidTime'", $LOG_DEBUG);
# retrieve a session object for this session id
my $dbh = $self->dbConnect() or return 0;
lib/Apache2/AuthCAS.pm view on Meta::CPAN
CASSessionCleanupThreshold 10
# Session cookie configuration for this service
CASSessionCookieDomain ""
CASSessionCookieName "APACHECAS"
CASSessionTimeout 1800
# Should the ticket parameter be removed from the URL?
CASRemoveTicket 0
# Optional override for this service name
view all matches for this distribution
view release on metacpan or search on metacpan
inc/Module/Install/Fetch.pm view on Meta::CPAN
if (eval { require LWP::Simple; 1 }) {
LWP::Simple::mirror($args{url}, $file);
}
elsif (eval { require Net::FTP; 1 }) { eval {
# use Net::FTP to get past firewall
my $ftp = Net::FTP->new($host, Passive => 1, Timeout => 600);
$ftp->login("anonymous", 'anonymous@example.com');
$ftp->cwd($path);
$ftp->binary;
$ftp->get($file) or (warn("$!\n"), return);
$ftp->quit;
view all matches for this distribution
view release on metacpan or search on metacpan
AuthTicketLDAP.pm view on Meta::CPAN
PerlSetVar FooTicketDBUser test
PerlSetVar FooTicketDBPassword secret
PerlSetVar FooTicketTable tickets:ticket_hash:ts
PerlSetVar FooTicketSecretTable ticket_secrets:sec_data:sec_version
PerlSetVar FooTicketExpires 45
PerlSetVar FooTicketIdleTimeout 30
PerlSetVar FooTicketThreshold 60
PerlSetVar FooTicketLogoutURI /foo/index.html
PerlSetVar FooTicketLoginHandler /foologin
PerlSetVar FooLoginScript /foologinform
PerlSetVar FooPath /
AuthTicketLDAP.pm view on Meta::CPAN
TicketTable => 'tickets:ticket_hash:ts',
TicketSecretTable => 'ticket_secrets:sec_data:sec_version',
TicketExpires => '15',
TicketLogoutURI => '/foo/index.html',
TicketLoginHandler => '/foologin',
TicketIdleTimeout => 5,
TicketThreshold => 60,
LDAPURL => 'ldap://ldap.foo.com:389',
LDAPDN => 'dc=foo,dc=com',
LDAPScope => 'one',
LDAPFilter => 'uid=MYUSER',
view all matches for this distribution
view release on metacpan or search on metacpan
smb/smbval/rfcnb-error.h view on Meta::CPAN
#define RFCNBE_CallRejNLFCN 11 /* Call rejected, not listening for CN */
#define RFCNBE_CallRejCNNP 12 /* Call rejected, called name not present */
#define RFCNBE_CallRejInfRes 13/* Call rejetced, name ok, no resources */
#define RFCNBE_CallRejUnSpec 14/* Call rejected, unspecified error */
#define RFCNBE_BadParam 15/* Bad parameters passed ... */
#define RFCNBE_Timeout 16/* IO Timed out */
/* Text strings for the error responses */
static char *RFCNB_Error_Strings[] = {
smb/smbval/rfcnb-error.h view on Meta::CPAN
"RFCNBE_CallRejNLFCN: Call rejected. Not listening for called name.",
"RFCNBE_CallRejCNNP: Call rejected. Called name not present.",
"RFCNBE_CallRejInfRes: Call rejected. Name present, but insufficient resources.",
"RFCNBE_CallRejUnSpec: Call rejected. Unspecified error.",
"RFCNBE_BadParam: Bad parameters passed to a routine.",
"RFCNBE_Timeout: IO Operation timed out ..."
};
view all matches for this distribution