open-cgf 0.10 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News open-cgf 0.10 (Default branch)
# 1  
Old 05-19-2008
open-cgf 0.10 (Default branch)

open-cgf provides a 3GPP-compliant charging gateway function (CGF) as a sink for SGSN, GGSN, and other streamed CDRs on the 3GPP Ga/Gz interface using GTP' (GTP prime). Refer to 3GPP 32.295. These are common packet-switched data elements of GSM/UMTS mobile telephone networks. It aims to supply a telco-grade solution to this common, albeit very specialized, need. It does not decode the ASN.1 CDRs, but simply and reliably writes them to disk for later processing.License: GNU General Public License v2Changes:
The CDR logging was rewritten to reflect thestandards and other implementations. This may havecreated some new bugs. Some "reliability" wasadded to the sending of CGF-initiated messages,although there are no consequences to non-responseyet. Backoff is exponential (a la TCP).Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
attropen(3C)						   Standard C Library Functions 					      attropen(3C)

NAME
attropen - open a file SYNOPSIS
#include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> int attropen(const char *path, const char *attrpath, int oflag, /* mode_t mode */...); DESCRIPTION
The attropen() function is similar to the open(2) function except that it takes a second path argument, attrpath, that identifies an extended attribute file associated with the first path argument. This function returns a file descriptor for the extended attribute rather than the file named by the initial argument. The O_XATTR flag is set by default for attropen() and the attrpath argument is always interpreted as a reference to an extended attribute. Extended attributes must be referenced with a relative path; providing an absolute path results in a normal file reference. RETURN VALUES
Refer to open(2). ERRORS
Refer to open(2). ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Evolving | +-----------------------------+-----------------------------+ |MT-Level |Safe | +-----------------------------+-----------------------------+ SEE ALSO
open(2), attributes(5), fsattr(5) SunOS 5.10 1 Aug 2001 attropen(3C)