Main > Free Download Search >

Free rfc software for linux

rfc

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 213
RFC 3.3.0

RFC 3.3.0


RFC (Remote Filesystem Checker) is a set of scripts that aims to help System-Administrators. more>>
RFC (Remote Filesystem Checker) is a set of scripts that aims to help System-Administrators run a filesystem-checker (like tripwire, aide and so on...) from a "master-node" to several "slave-nodes" using ssh, scp, sudo and few other common shell commands.
Main features:
- crate/update FileSystem-Checkers (FSC) database
- execute FSC and create a log-report
- allow parallel execution, mass-check and mass-upgrade!
- support non-interactive operations
- use scp/ssh for all connections
- use an arbitrary port for ssh/scp connections (may be different for each host!)
- send (ONE) email to administrator(s)
- rotate logs, databases and other files
- support for AFICK, AIDE and INTEGRIT FileSystem-Checkers
- check users creation/removal
- check group creation/removal
- check if someone changes UID, GID or shell
- check for groups members or ID changes
- check for SUID/SGID on remote host via a separate PERL script
- check if remote-host is up before run checks on it (via nmap)
- kill the processes that take too long (you can set an arbitrary timeout value)
<<less
Download (2.79MB)
Added: 2005-11-18 License: GPL (GNU General Public License) Price:
1439 downloads
SAP::Rfc 1.55

SAP::Rfc 1.55


SAP::Rfc is a Perl module that contains RFC Function calls against an SAP R/3 System. more>>
SAP::Rfc is a Perl module that contains RFC Function calls against an SAP R/3 System.

SYNOPSIS

# WARNING - as of SAP::Rfc 1.40 USER and PASSWD are case sensitive ready for
# R3 7.x
use SAP::Rfc;
$rfc = new SAP::Rfc(
ASHOST => myhost,
USER => ME,
PASSWD => secret,
LANG => EN,
CLIENT => 200,
SYSNR => 00,
TRACE => 1 );

my $it = $rfc->discover("RFC_READ_TABLE");

$it->QUERY_TABLE(TRDIR);
$it->ROWCOUNT( 2000 );
$it->OPTIONS( ["NAME LIKE RS%"] );

# or pass a list of hash refs like so:
$it->OPTIONS( [ { TEXT => "NAME LIKE RS%" } ] );

$rfc->callrfc( $it );

print "NO. PROGS: ".$it->tab(DATA)->rowCount()." n";
print join("n",( $it->DATA ));

$rfc->close();

SAP::Rfc - is a Perl extension for performing RFC Function calls against an SAP R/3 System. Please refer to the README file found with this distribution. This Distribution also allows the creation of registered RFCs so that an SAP system can call arbitrary Perl code created in assigned callbacks.

The best way to describe this package is to give a brief over view, and then launch into several examples. The SAP::Rfc package works in concert with several other packages that also come with same distribution, these are SAP::Iface, SAP::Parm, SAP::Tab, and SAP::Struc. These come together to give you an object oriented programming interface to performing RFC function calls to SAP from a UNIX based platform with your favourite programming language - Perl. A SAP::Rfc object holds together one ( and only one ) connection to an SAP system at a time. The SAP::Rfc object can hold one or many SAP::Iface objects, each of which equate to the definition of an RFC Function in SAP ( trans SE37 ). Each SAP::Iface object holds one or many SAP::Parm, and/or SAP::Tab objects, corresponding to the RFC Interface definition in SAP ( SE37 ).

For all SAP::Tab objects, and for complex SAP::Parm objects, a SAP::Struc object can be defined. This equates to a structure definition in the data dictionary ( SE11 ). Because the manual definition of interfaces and structures is a boring and tiresome exercise, there are specific methods provided to automatically discover, and add the appropriate interface definitions for an RFC Function module to the SAP::Rfc object ( see methods discover, and structure of SAP::Rfc ).

Please note that USER and PASSWD are now case sensitive - this change has the potential to break backward compatibility.

<<less
Download (0.070MB)
Added: 2007-05-24 License: Perl Artistic License Price:
919 downloads
RFC::RFC822::Address 1.5

RFC::RFC822::Address 1.5


RFC::RFC822::Address is a Perl module for RFC 822 style address validation. more>>
RFC::RFC822::Address is a Perl module for RFC 822 style address validation.

SYNOPSIS

use RFC::RFC822::Address qw /valid/;

print "Validn" if valid abigail@example.com;

This module checks strings to see whether they are have the valid syntax, as defined in RFC 822 [1]. One subroutine, valid, can be imported, which takes a single string as argument. If the string is valid according to RFC 822, a true value is returned, else a false value is returned.

CAVEATS and BUGS

This module sets the variable $Parse::RecDescent::skip. This will influence all other Parse::RecDescent parsers. And this parser will break if you set $Parse::RecDescent::skip to another value. It doesnt look that it is possible to set an alternative skip value for each parser, other than setting the skip value on each production.

Example A.1.5 in RFC 822 is wrong. It should use "Galloping Gourmet"@ANT.Down-Under.

This module should have been named RFC::822::Address. However, perl 5.004 doesnt like the 822 part, and at the time of this writing MacPerl is still at 5.004.

This module is slow.

<<less
Download (1.5MB)
Added: 2007-02-15 License: Perl Artistic License Price:
987 downloads
JWhoisServer 0.1.0.1

JWhoisServer 0.1.0.1


JWhoisServer project is a small, fast, and highly configurable RFC 3912 compliant whois server. more>>
JWhoisServer project is a small, fast, and highly configurable RFC 3912 compliant whois server written in Java and using RDBMS as a storage engine.

<<less
Download (0.053MB)
Added: 2007-06-29 License: GPL (GNU General Public License) Price:
848 downloads
NoxBot 0.3

NoxBot 0.3


NoxBot is an IRC bot totally written in PHP 5. more>>
NoxBot project is an IRC bot totally written in PHP 5.
Main features:
- Cross platform.
- Modular
- Easy to use.
- Feature full.
- Easy plugin development.
- Being mostly RFC compliant.
<<less
Download (0.16MB)
Added: 2007-01-26 License: GPL (GNU General Public License) Price:
1001 downloads
XPertMailer 1.4.5

XPertMailer 1.4.5


XPertMailer is a PHP class to send encoded MIME-type email messages. more>>
XPertMailer is a PHP class to send encoded MIME-type email messages like text, HTML, HTML embedded images, attachments, etc., to client, localhost, or relay SMTP servers with optional authorisation.
The class functions are optimised to execute in a very small time and to be easy to use. This reduces the size of the code and the time required to write it.
Data sending is done according to RFC 821 and RFC 2821, and the message type is in compliance with RFC 2045, RFC 2046, RFC 2047, RFC 2048, RFC 2049, and RFC 2822.
Enhancements:
- Added the clear attachments functionality
<<less
Download (0.028MB)
Added: 2006-05-26 License: GPL (GNU General Public License) Price:
1284 downloads
Md4sum 0.02.03

Md4sum 0.02.03


Md4sum generates or checks MD4 checksums applying the algorithm specified in RFC 1320. more>>
Md4sum generates or checks MD4 checksums applying the algorithm specified in RFC 1320. The project role is to generate and print checksums for all files passed as arguments.
The usage is: md4sum [options] [file(s)]...
see the manual page for more information.
Enhancements:
- improved performance
<<less
Download (0.026MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
912 downloads
z3lib 1.0

z3lib 1.0


z3lib is an RFC 1951/1952 compliant compression library with an easy interface. more>>
z3lib is an RFC 1951/1952 compliant compression library with an easy interface.

Thus, from quite old templates of previous studies, I compiled this library, which provides:

simple interface, both for memory mapped data and for files
RFC 1951, RFC 1952 compliance
thread safe implementation
three layer modular design
designed to avoid malloc, to match MMU less system, bootloader, or similar
options to do without glibc at all
options to do without encoder or decoder

The current version is not yet optimised for speed.
<<less
Download (0.035MB)
Added: 2006-02-02 License: GPL (GNU General Public License) Price:
1359 downloads
XPertMailer for PHP5 3.0.4

XPertMailer for PHP5 3.0.4


XPertMailer is a SMTP & POP3 PHP Mail Client that you can use to send and read e-mails in MIME format. more>>
XPertMailer is a SMTP & POP3 PHP Mail Client that you can use to send and read e-mails in MIME format (text, HTML, HTML embedded images, attachments) towards a localhost, client or relay SMTP servers with optional autentication and TLS/SSL support. Cc and Bcc functionality are included in this version of XPertMailer.

The XPertMailer class functions are optimised to execute in a very small time and also to be easy to use. This reduces the size of the code and the time required to write it. The names of the public functions in the XPertMailer class are eloquent so that they can be used without any confusions being made. The data sendig is done according to the RFC 821, RFC 822, RFC 2821, RFC 2822, RFC 2487 and the message type is in conformity with the RFC 2045, RFC 2046, RFC 2047, RFC 2048 and RFC 2049.

<<less
Download (0.087MB)
Added: 2007-04-22 License: Freeware Price:
916 downloads
uriparser 0.5.1

uriparser 0.5.1


uriparser project is a strictly RFC 3986 compliant URI parsing library. more>>
uriparser project is a strictly RFC 3986 compliant URI parsing library. uriparser is cross-platform, fast, supports Unicode and is licensed under the New BSD license.
Main features:
- Cross-platform (Unix, Windows, Mac OS X, ...)
- Strictly compliant to RFC 3986 (latest RFC on URIs to date)
- Fast (linear input length time complexity)
- Unicode support
- No external dependencies
- Uses unit testing
- Licensed under the New BSD license
Enhancements:
- This release fixes several bugs revealed by test cases from 4Suite.
<<less
Download (0.19MB)
Added: 2007-08-09 License: BSD License Price:
807 downloads
OpenCAP 0.2

OpenCAP 0.2


OpenCAP is a server for Internet calendaring by following the specifications of the IETF (RFC CAP 4324). more>>
OpenCAP is a server for Internet calendaring by following the specifications of the IETF (RFC CAP 4324).

Cap4j is the RFC 4234 CAP implementation. OpenCap project is the implementation of Cap4j calendar store.

Why another calendaring project ?

Ideally, Internet Calendaring should allow every Internet user to schedule meeting with each-other like they send mails. Unfortunately, Internet Calendaring suffers from a lack of interoperability. Thats why its so important to follow such standards.

<<less
Download (1.0MB)
Added: 2006-03-03 License: The Apache License 2.0 Price:
1330 downloads
rfc2mib

rfc2mib


rfc2mib is a script that extracts MIB/PIB/ASN.1 modules from an RFC document. more>>
This Tcl script may be used to extract MIB, PIB and ASN.1 modules from an RFC document.

Unlike most extractors, this script is smart enough to recognize ASN.1-style comments prior to or within the module header, use of the "TagDefaults" part of the module header (not used by MIB modules), module headers that are broken across multiple lines, and macros.
<<less
Download (0.003MB)
Added: 2005-04-13 License: BSD License Price:
1661 downloads
Stunner 0.0.5

Stunner 0.0.5


Stunner is an RFC 3489 STUN server and client for Unix and Unix-line operating systems. more>>
Stunner is an RFC 3489 STUN server and client for Unix and Unix-line operating systems. Stunner aims to adhere closely to the RFC.

The STUN protocol is used to help clients who are located behind network-address translating (NAT) routers determine the sort of NAT being used. It is commonly used as part of Voice-over-IP (VoIP) systems.
<<less
Download (0.011MB)
Added: 2006-09-18 License: GPL (GNU General Public License) Price:
1134 downloads
Vovida SIP Stack 1.5.0

Vovida SIP Stack 1.5.0


The Vovida SIP stack is an implementation of the protocol defined in RFC 2543. more>>
The Vovida SIP stack is an implementation of the protocol defined in RFC 2543, the Session Initiation Protocol, which can be used to initiate voice connections (phone calls) over IP networks.

It offers an object-oriented C++ API as well as sample applications demonstrating its use.
<<less
Download (6.60MB)
Added: 2005-09-14 License: GPL (GNU General Public License) Price:
908 downloads
mod_auth_xradius 0.4.6

mod_auth_xradius 0.4.6


mod_auth_xradius provides high performance authentication against RFC 2865 RADIUS Servers. more>>
mod_auth_xradius is an Apache module that provides high performance authentication against RFC 2865 RADIUS Servers.
Main features:
- Supports popular RADIUS Servers including OpenRADIUS, FreeRADIUS and commercial servers.
- Distributed Authentication Cache using apr_memcache.
- Local Authentication Cache using DBM.
- Uses standard HTTP Basic Authentication, unlike mod_auth_radius which uses cookies for sessions.
<<less
Download (0.17MB)
Added: 2006-05-15 License: GPL (GNU General Public License) Price:
1259 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5