client access
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5172
mod_access
mod_access is an Apache module to access control based on client hostname or IP address. more>>
mod_access is an Apache module to access control based on client hostname or IP address.
The directives provided by mod_access are used in < Directory >, < Files >, and < Location > sections as well as .htaccess files to control access to particular parts of the server. Access can be controlled based on the client hostname, IP address, or other characteristics of the client request, as captured in environment variables.
The Allow and Deny directives are used to specify which clients are or are not allowed access to the server, while the Order directive sets the default access state, and configures how the Allow and Deny directives interact with each other.
Both host-based access restrictions and password-based authentication may be implemented simultaneously. In that case, the Satisfy directive is used to determine how the two sets of restrictions interact.
In general, access restriction directives apply to all access methods (GET, PUT, POST, etc). This is the desired behavior in most cases. However, it is possible to restrict some methods, while leaving other methods unrestricted, by enclosing the directives in a < Limit > section.
<<lessThe directives provided by mod_access are used in < Directory >, < Files >, and < Location > sections as well as .htaccess files to control access to particular parts of the server. Access can be controlled based on the client hostname, IP address, or other characteristics of the client request, as captured in environment variables.
The Allow and Deny directives are used to specify which clients are or are not allowed access to the server, while the Order directive sets the default access state, and configures how the Allow and Deny directives interact with each other.
Both host-based access restrictions and password-based authentication may be implemented simultaneously. In that case, the Satisfy directive is used to determine how the two sets of restrictions interact.
In general, access restriction directives apply to all access methods (GET, PUT, POST, etc). This is the desired behavior in most cases. However, it is possible to restrict some methods, while leaving other methods unrestricted, by enclosing the directives in a < Limit > section.
Download (MB)
Added: 2007-05-05 License: The Apache License Price:
553 downloads
LIRC Client Daemon 0.9.1
LIRC Client Daemon project is an attempt to solve certain problems in LIRC. more>>
LIRC Client Daemon project is an attempt to solve certain problems in LIRC.
The LIRC Client Daemon is a per-user daemon that sits between the LIRC daemon (from the Linux InfraRed Control project) and any other programs that use LIRC.
It ships with a replacement library for LIRCs liblirc_client, which connects to lirccd instead of lircd. This primarily helps solve the synchronization present in the standard liblirc_client, and also empowers the user with a much more flexible configuration file format.
<<lessThe LIRC Client Daemon is a per-user daemon that sits between the LIRC daemon (from the Linux InfraRed Control project) and any other programs that use LIRC.
It ships with a replacement library for LIRCs liblirc_client, which connects to lirccd instead of lircd. This primarily helps solve the synchronization present in the standard liblirc_client, and also empowers the user with a much more flexible configuration file format.
Download (0.23MB)
Added: 2007-01-18 License: GPL (GNU General Public License) Price:
1015 downloads
Oww Client 0.5.4
Oww Client is a graphical client program for One-Wire Weather (Oww) servers. more>>
Oww Client is a graphical client program for One-Wire Weather (Oww) servers. Oww Client is based on GTK+, displaying lists of collected weather data from one or more servers.
Enhancements:
- Owwl was enhanced to include new sensor types (mainly for cryogenic readout).
- A status window was added.
- Reconnexion is now automatic, after the remote server drops it.
<<lessEnhancements:
- Owwl was enhanced to include new sensor types (mainly for cryogenic readout).
- A status window was added.
- Reconnexion is now automatic, after the remote server drops it.
Download (0.038MB)
Added: 2006-06-09 License: Artistic License Price:
1233 downloads
KABC Client 0.8.1
KABC Client is a command line tool that provides access to the KDE address book. more>>
KABC Client is a command line tool that provides access to the KDE address book, which is also used by applications like KAddressBook.
It can take its input from either the command line or through standard input, allowing its use in Unix shell pipe and filter constructs. Input and output text is interpreted and formatted by filters.
kabcclient can perform the following operations:
- List: --list or -L
Write all contacts of the addressbook to stdout
- Search: --search or -S
Search for contacts matching the programs input
- Add: --add or -A
Add new contacts to the addressbook
- Remove: --remove or -R
Remove contacts matching the programs input from the addressbook
- Merge: --merge or -M
Add data from the programs input to matching contacts in the addressbook
Enhancements:
- Adding installation instructions and build files for creating Debian packages.
- No changes to the program itself!
<<lessIt can take its input from either the command line or through standard input, allowing its use in Unix shell pipe and filter constructs. Input and output text is interpreted and formatted by filters.
kabcclient can perform the following operations:
- List: --list or -L
Write all contacts of the addressbook to stdout
- Search: --search or -S
Search for contacts matching the programs input
- Add: --add or -A
Add new contacts to the addressbook
- Remove: --remove or -R
Remove contacts matching the programs input from the addressbook
- Merge: --merge or -M
Add data from the programs input to matching contacts in the addressbook
Enhancements:
- Adding installation instructions and build files for creating Debian packages.
- No changes to the program itself!
Download (0.25MB)
Added: 2005-08-31 License: GPL (GNU General Public License) Price:
1514 downloads
FUSE::Client 1.08
FUSE::Client is a Perl-FUSE client. more>>
FUSE::Client is a Perl-FUSE client.
SYNOPSIS
use FUSE::Client;
$c = FUSE::Client->new({
Port=>35008,
Quiet=>1,
});
$c->connect();
$c->send("COMMAND","parameter");
$c->disconnect();
The FUSE::Client module will create a TCP FUSE client to test sending messages to a FUSE server.
The external interface to FUSE::Client is:
$c = FUSE::Client->new( [%options] );
The object constructor takes the following arguments in the options hash:
Quiet = 0|1
Whether to be quiet. Default is to report all events to STDOUT (not Quiet).
Port = n
The port for the client to connect to. Default is 1024.
$c->connect();
This method connects the client to the server.
$c->disconnect();
This method disconnects the client from the server.
$c->send( $command, $parameter );
Send a FUSE formatted command message to the server, with the specified parameter.
<<lessSYNOPSIS
use FUSE::Client;
$c = FUSE::Client->new({
Port=>35008,
Quiet=>1,
});
$c->connect();
$c->send("COMMAND","parameter");
$c->disconnect();
The FUSE::Client module will create a TCP FUSE client to test sending messages to a FUSE server.
The external interface to FUSE::Client is:
$c = FUSE::Client->new( [%options] );
The object constructor takes the following arguments in the options hash:
Quiet = 0|1
Whether to be quiet. Default is to report all events to STDOUT (not Quiet).
Port = n
The port for the client to connect to. Default is 1024.
$c->connect();
This method connects the client to the server.
$c->disconnect();
This method disconnects the client from the server.
$c->send( $command, $parameter );
Send a FUSE formatted command message to the server, with the specified parameter.
Download (0.002MB)
Added: 2007-04-04 License: Perl Artistic License Price:
936 downloads
Oracle client 1.00
Oracle client is a simplistic Perl-based Oracle client. more>>
Oracle client is a simplistic Perl-based Oracle client that tries to mimic some of the functionality of PostgreSQL and MySQLs text-based SQL clients.
It is relatively simplistic, but much more useful than dbishell or sqlplus.
The project supports readline, history, desc, and various shorthand commands like d, , c, etc.
<<lessIt is relatively simplistic, but much more useful than dbishell or sqlplus.
The project supports readline, history, desc, and various shorthand commands like d, , c, etc.
Download (0.013MB)
Added: 2007-04-12 License: Perl Artistic License Price:
938 downloads
Avis client library 1.0
Avis client library is a Java API for clients accessing Elvin event routers. more>>
Avis client library is a Java API for clients accessing Elvin event routers, including the open source Avis event router and the commercial Mantara Elvin product.
Avis is an event router service compatible with the commercial Elvin implementation developed by Mantara Software. Avis provides a fast, general-purpose publish/subscribe message bus.
Elvin event routers alllow arbitrary messages, known as notifications, to be exchanged via a publish/subscribe model. Elvin clients subscribe to messages published by other clients using expressions that match messages by their content.
The content-based routing approach used in Elvin routers differs from many other message bus systems that operate by selecting messages published on pre-defined channels, and has the advantage of promoting a much higher level of decoupling between producers and consumers of events.
The name "Avis" derives from the French word avis, meaning advice or notification.
Enhancements:
- This release marks a stable baseline for the Java client API.
- The core set of features required for an Elvin client library are now implemented and stable, including subscription, notification, security, close event notification, liveness checking, and router connection option support.
<<lessAvis is an event router service compatible with the commercial Elvin implementation developed by Mantara Software. Avis provides a fast, general-purpose publish/subscribe message bus.
Elvin event routers alllow arbitrary messages, known as notifications, to be exchanged via a publish/subscribe model. Elvin clients subscribe to messages published by other clients using expressions that match messages by their content.
The content-based routing approach used in Elvin routers differs from many other message bus systems that operate by selecting messages published on pre-defined channels, and has the advantage of promoting a much higher level of decoupling between producers and consumers of events.
The name "Avis" derives from the French word avis, meaning advice or notification.
Enhancements:
- This release marks a stable baseline for the Java client API.
- The core set of features required for an Elvin client library are now implemented and stable, including subscription, notification, security, close event notification, liveness checking, and router connection option support.
Download (0.24MB)
Added: 2007-06-25 License: LGPL (GNU Lesser General Public License) Price:
855 downloads
Perl MUD Client 2.7
Perl MUD Client is a text-based MUD client supporting SSL, ANSI, telnet negotations, and MCP. more>>
Perl MUD Client project is a text-based MUD client supporting SSL, ANSI, telnet negotations, and MCP.
PMC is a text based mudclient written in Perl 5. It utilizes GNU readline, supports SSL, local editing support through MCP (MudClientProtocol), full telnet negotiation support and of course ANSI support if your terminal supports it.
Unlike other mudclients with input line editors/history, it also supports the telnet character mode, which enables it to use e.g. fullscreen applications within a mud (like the xeditor found on some LP Muds).
<<lessPMC is a text based mudclient written in Perl 5. It utilizes GNU readline, supports SSL, local editing support through MCP (MudClientProtocol), full telnet negotiation support and of course ANSI support if your terminal supports it.
Unlike other mudclients with input line editors/history, it also supports the telnet character mode, which enables it to use e.g. fullscreen applications within a mud (like the xeditor found on some LP Muds).
Download (0.023MB)
Added: 2006-12-18 License: Artistic License Price:
1043 downloads
PHP Client Sniffer 2.1.3
PHP Client Sniffer is a PHP class file that allows one to quickly determine the clients browser. more>>
PHP Client Sniffer is a PHP class file that allows one to quickly determine the clients browser and system information based on the HTTP_USER_AGENT string. The class can be used to generate browser specific html marks and other client side scripting.
Enhancements:
- add k-meleon support
- add camino support
- add mozilla firebird support
- add amiga support
- fixed issues with netscape and gecko browsers
<<lessEnhancements:
- add k-meleon support
- add camino support
- add mozilla firebird support
- add amiga support
- fixed issues with netscape and gecko browsers
Download (0.020MB)
Added: 2006-06-29 License: LGPL (GNU Lesser General Public License) Price:
1217 downloads
PHP FTP Client 0.9.4
PHP FTP Client is a PHP FTP Client. more>>
PHP FTP Client is an FTP client that is useful for allowing people behind a firewall access to FTP without opening the FTP ports inside the firewall.
It could be used as a front end to a local FTP server, and therefore allow the administrator to provide access to the FTP server only from localhost.
Main features:
- Provide FTP access through a firewall which blocks FTP
- Provide a front end to an FTP server which only allows access to the web server, thus reducing the risk of the FTP server being attacked.
Enhancements:
- Have corrected problems with missing files. Was a case of linking against files I shouldnt have been.
- Added an FAQ, which currently only explains how to use the multi-file upload feature.
<<lessIt could be used as a front end to a local FTP server, and therefore allow the administrator to provide access to the FTP server only from localhost.
Main features:
- Provide FTP access through a firewall which blocks FTP
- Provide a front end to an FTP server which only allows access to the web server, thus reducing the risk of the FTP server being attacked.
Enhancements:
- Have corrected problems with missing files. Was a case of linking against files I shouldnt have been.
- Added an FAQ, which currently only explains how to use the multi-file upload feature.
Download (0.06MB)
Added: 2005-04-26 License: GPL (GNU General Public License) Price:
1662 downloads
Direct Access Provider Library 3.03
Direct Access Provider Library is a transport-independent, platform-independent, high-performance API. more>>
Direct Access Provider Library in short DAPL is a transport-independent, platform-independent, high-performance API for using the remote direct memory access (RDMA) capabilities of modern interconnect technologies such as InfiniBand, the Virtual Interface Architecture, and iWARP.
This is the reference implementation of that specification by the DAT Collaborative who maintain the DAPL API.
Enhancements:
- Support was added for new IB verbs client register event.
- Some problems supporting create qp without recv cq handle or recv qp resources were fixed.
- Some timeout and long disconnect delay issues exposed during scalability tests were fixed.
- Minor build problems were fixed.
- Support for multiple IB devices was added to dat.conf to support IPoIB HA failover.
- Support for returning local and remote port information was added.
- The RPM spec file was cleaned up.
- Enviroment variables to configure connection management timers were added.
<<lessThis is the reference implementation of that specification by the DAT Collaborative who maintain the DAPL API.
Enhancements:
- Support was added for new IB verbs client register event.
- Some problems supporting create qp without recv cq handle or recv qp resources were fixed.
- Some timeout and long disconnect delay issues exposed during scalability tests were fixed.
- Minor build problems were fixed.
- Support for multiple IB devices was added to dat.conf to support IPoIB HA failover.
- Support for returning local and remote port information was added.
- The RPM spec file was cleaned up.
- Enviroment variables to configure connection management timers were added.
Download (5.8MB)
Added: 2007-07-25 License: GPL (GNU General Public License) Price:
831 downloads
Ghoti IRC Client 0.86
Ghoti is a GUI-based IRC Client for unix/linux. more>>
Ghoti is a GUI-based IRC Client for unix/linux, written in Perl, and distributed under the GPL. Ghoti IRC Client has an uncanny similarity to mIRC.
Main features:
- Multi-server support
- Fully customisable GUI
- DCC Resume support
- Support for mIRC colours
- Robust CTCP flood protection
- Built in XDCC/CDCC file offering
- On-event sounds (if you really must)
<<lessMain features:
- Multi-server support
- Fully customisable GUI
- DCC Resume support
- Support for mIRC colours
- Robust CTCP flood protection
- Built in XDCC/CDCC file offering
- On-event sounds (if you really must)
Download (0.15MB)
Added: 2006-07-24 License: GPL (GNU General Public License) Price:
1190 downloads
HTTunnel::Client 0.08
HTTunnel::Client is a client class for Apache::HTTunnel. more>>
HTTunnel::Client is a client class for Apache::HTTunnel.
SYNOPSIS
my $hc = new HTTunnel::Client("http://localhost/httunnel") ;
$hc->connect(tcp, $some_host, $some_port) ;
$hc->print(some request) ;
my $some_response = $hc->read(1024) ;
$ch->close() ;
HTTunnel::Client is the client class to Apache::HTTunnel. It allows the creation of a network connection tunnelled through HTTP. All data sent and received during this connection will be transported inside normal HTTP requests.
HTTunnel::Client extends LWP::UserAgent, so all LWP::UserAgent methods are available through HTTunnel::Client.
CONSTRUCTORS
new ( URL, [ARGS] )
Creates an HTTunnel::Client object that will use URL to contact the Apache::HTTunnel server. ARGS are is passed directly to the LWP::UserAgent constructor.
METHODS
connect ( PROTO, HOST, PORT, [TIMEOUT] )
Asks the Apache::HTTunnel server to establish a connection of protocol PROTO to HOST:PORT. An exception is thrown if an error occurs.
Accepted values for PROTO are tcp and udp.
print ( DATA )
Asks the Apache::HTTunnel server to write DATA to the established remote connection. An exception is thrown if an error occurs.
DATA can be a scalar or a list, in which case the list items are concatenated together.
read ( LEN, [TIMEOUT], [LIFELINE], [LIFELINE_CUT_ACTION] )
Asks the Apache::HTTunnel server to read up to LEN bytes from the established remote connection. An exception is thrown if an error occurs.
When trying to read, HTTunnel::Client will establish an HTTP connection to the Apache::HTTunnel server asking that LEN bytes be read. If no data is available after TIMEOUT seconds (the default value is 15 seconds), the HTTP connection is closed by the server and the read method will establish a new one. This will go on until some data or EOF is returned.
Therefore read will return only when some (or no more) data is available to be read (like the regular read).
LIFELINE can be any valid filehandle from which one can read. If used, read will interrupt its connection loop and execute LIFELINE_CUT_ACTION when data (or EOF) is available to be read from LIFELINE. It will then return undef.
LIFELINE_CUT_ACTION wust be a CODE ref. The default value is
sub {die("lifeline cutn")}
These features can be used if you want fork and to start a process that does nothing but reads and returns the data via a pipe. You can then use a second pipe to make sure the reader process terminates when the master process terminates.
Here is an example:
my $lifeline = new IO::Pipe() ;
my $reader = new IO::Pipe() ;
my $pid = fork() ;
if ($pid){
$reader->reader() ;
$lifeline->writer() ;
# Read data from $reader...
}
else {
$reader->writer() ;
$reader->autoflush(1) ;
$lifeline->reader() ;
while (1){
my $data = $hc->read(1024, 15, $lifeline, sub {exit()}) ;
exit() unless defined($data) ;
print $reader $data ;
}
}
close ( )
Asks the Apache::HTTunnel server to close a previously established connection.
get_peer_info ( )
The get_peer_info method returns information about the remote connection. A string containing the IP address and port number, separated by a colon (:) is returned. This method can be useful with UDP connections to validate the sender of each packet.
request_callback ( REQUEST )
The request_callback method is a callback method that can be used to access the HTTP::Request object just before it is sent. The default implementation does nothing.
response_callback ( RESPONSE )
The response_callback method is a callback method that can be used to access the HTTP::Response object just after it is received. The default implementation does nothing.
<<lessSYNOPSIS
my $hc = new HTTunnel::Client("http://localhost/httunnel") ;
$hc->connect(tcp, $some_host, $some_port) ;
$hc->print(some request) ;
my $some_response = $hc->read(1024) ;
$ch->close() ;
HTTunnel::Client is the client class to Apache::HTTunnel. It allows the creation of a network connection tunnelled through HTTP. All data sent and received during this connection will be transported inside normal HTTP requests.
HTTunnel::Client extends LWP::UserAgent, so all LWP::UserAgent methods are available through HTTunnel::Client.
CONSTRUCTORS
new ( URL, [ARGS] )
Creates an HTTunnel::Client object that will use URL to contact the Apache::HTTunnel server. ARGS are is passed directly to the LWP::UserAgent constructor.
METHODS
connect ( PROTO, HOST, PORT, [TIMEOUT] )
Asks the Apache::HTTunnel server to establish a connection of protocol PROTO to HOST:PORT. An exception is thrown if an error occurs.
Accepted values for PROTO are tcp and udp.
print ( DATA )
Asks the Apache::HTTunnel server to write DATA to the established remote connection. An exception is thrown if an error occurs.
DATA can be a scalar or a list, in which case the list items are concatenated together.
read ( LEN, [TIMEOUT], [LIFELINE], [LIFELINE_CUT_ACTION] )
Asks the Apache::HTTunnel server to read up to LEN bytes from the established remote connection. An exception is thrown if an error occurs.
When trying to read, HTTunnel::Client will establish an HTTP connection to the Apache::HTTunnel server asking that LEN bytes be read. If no data is available after TIMEOUT seconds (the default value is 15 seconds), the HTTP connection is closed by the server and the read method will establish a new one. This will go on until some data or EOF is returned.
Therefore read will return only when some (or no more) data is available to be read (like the regular read).
LIFELINE can be any valid filehandle from which one can read. If used, read will interrupt its connection loop and execute LIFELINE_CUT_ACTION when data (or EOF) is available to be read from LIFELINE. It will then return undef.
LIFELINE_CUT_ACTION wust be a CODE ref. The default value is
sub {die("lifeline cutn")}
These features can be used if you want fork and to start a process that does nothing but reads and returns the data via a pipe. You can then use a second pipe to make sure the reader process terminates when the master process terminates.
Here is an example:
my $lifeline = new IO::Pipe() ;
my $reader = new IO::Pipe() ;
my $pid = fork() ;
if ($pid){
$reader->reader() ;
$lifeline->writer() ;
# Read data from $reader...
}
else {
$reader->writer() ;
$reader->autoflush(1) ;
$lifeline->reader() ;
while (1){
my $data = $hc->read(1024, 15, $lifeline, sub {exit()}) ;
exit() unless defined($data) ;
print $reader $data ;
}
}
close ( )
Asks the Apache::HTTunnel server to close a previously established connection.
get_peer_info ( )
The get_peer_info method returns information about the remote connection. A string containing the IP address and port number, separated by a colon (:) is returned. This method can be useful with UDP connections to validate the sender of each packet.
request_callback ( REQUEST )
The request_callback method is a callback method that can be used to access the HTTP::Request object just before it is sent. The default implementation does nothing.
response_callback ( RESPONSE )
The response_callback method is a callback method that can be used to access the HTTP::Response object just after it is received. The default implementation does nothing.
Download (0.020MB)
Added: 2007-06-09 License: Perl Artistic License Price:
868 downloads
SOAP::XML::Client 1.9
SOAP::XML::Client is a simple frame work for talking with web services. more>>
SOAP::XML::Client is a simple frame work for talking with web services.
This package is the base class for talking with web services, there are specific modules to use depending on the type of service you are calling, e.g. SOAP::XML::Client::DotNet or SOAP::XML::Client::Generic
This package helps in talking with web services, it just needs a bit of XML thrown at it and you get some XML back. Its designed to be REALLY simple to use.
<<lessThis package is the base class for talking with web services, there are specific modules to use depending on the type of service you are calling, e.g. SOAP::XML::Client::DotNet or SOAP::XML::Client::Generic
This package helps in talking with web services, it just needs a bit of XML thrown at it and you get some XML back. Its designed to be REALLY simple to use.
Download (0.009MB)
Added: 2006-09-13 License: Perl Artistic License Price:
1138 downloads
GPM client library 1.20.3.0
GPM client library (libgpm) package is an stand-alone version of GPMs client library. more>>
GPM client library (libgpm) package is an stand-alone version of GPMs client library, used by many console applications for mouse access.
Despite the (now quite aged) GPM package it contains just the client part (no server), and provides a pkgconfig descriptor (libgpm.pc) for easy importing.
Enhancements:
- This release pulls in some outstanding patches from upstream and Gentoo. It adds a Gentoo ebuild file.
<<lessDespite the (now quite aged) GPM package it contains just the client part (no server), and provides a pkgconfig descriptor (libgpm.pc) for easy importing.
Enhancements:
- This release pulls in some outstanding patches from upstream and Gentoo. It adds a Gentoo ebuild file.
Download (0.032MB)
Added: 2007-05-18 License: GPL (GNU General Public License) Price:
892 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above client access search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed