Vortex Library 1.1.0 (Current branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Vortex Library 1.1.0 (Current branch)
# 1  
Old 01-29-2009
Vortex Library 1.1.0 (Current branch)

Vortex Library is a BEEP Core protocol implementation, following the standard defined in RFC 3080 and RFC 3081. It has a clean and easy-to-use API that allows you to write new application protocols very quickly. Vortex Library has been developed within the Af-Arch project, and it is being used at the data transport layer. However, Vortex Library can be used independently of Af-Arch. License: GNU Lesser General Public License (LGPL) Changes:
New features include separation of the library into components, HTTP proxy support, a context based API, and a PULL API for single threaded programming. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. AIX

Add shared members from library to same library in a different directory

I'm trying to install libiconv to AIX 7.1 from an rpm off of the perzl site. The rpm appears to install but I get this error message. add shr4.o shared members from /usr/lib/libiconv.a to /opt/freeware/lib/libiconv.a add shr.o shared members from /usr/lib/libiconv.a to ... (5 Replies)
Discussion started by: kneemoe
5 Replies

2. Linux

./configure problem for libsf library due to apparently missing libdb library.

Hello, ./configure script fails to configure libsf. Please check the following last few lines of configure script error. checking for db1/db.h... no checking for db.h... yes checking for dbopen in -ldb1... no configure: error: No libdb? No libsf. But find command shows the following; ... (4 Replies)
Discussion started by: vectrum
4 Replies

3. Shell Programming and Scripting

How to change a Makefile from building static library to shared library?

Hi: I have a library that it only offers Makefile for building static library. It built libxxx.a file. How do I in any way build a shared library? (either changin the Makefile or direct script or command to build shared library) Thanks. (1 Reply)
Discussion started by: cpthk
1 Replies
Login or Register to Ask a Question
getipsecprotobyname(3NSL)			       Networking Services Library Functions				 getipsecprotobyname(3NSL)

NAME
getipsecprotobyname, getipsecprotobynum - query IPsec protocols entries SYNOPSIS
cc -flag ... file ...-lnsl [-library ...] #include <netdb.h> int getipsecprotobyname(const char *proto_name); char *getipsecprotobynum(int proto_num); DESCRIPTION
Use the getipsecprotobyname() and getipsecprotobynum() functions to obtain the IPsec algorithm mappings that are defined by ipsecalgs(1M). You can also use the getipsecprotobyname() and getipsecprotobynum() functions in conjunction with getipsecalgbyname(3NSL) and getipsecal- gbynum(3NSL) to obtain information about the supported IPsec algorithms. The IPsec algorithms and associated protocol name spaces are defined by RFC 2407. getipsecprotobyname() takes as an argument the name of an IPsec protocol and returns its assigned protocol number. The character string returned by the getipsecprotobyname() function must be freed by the called when it is no longer needed. getipsecprotobynum() takes as an argument a protocol number and returns the corresponding protocol name. The following protocol numbers are pre-defined: IPSEC_PROTO_ESP Defines the encryption algorithms (transforms) that can be used by IPsec to provide data confidentiality. IPSEC_PROTO_AH Defines the authentication algorithms (transforms) that can be used by IPsec to provide authentication. PARAMETERS
proto_name A pointer to the name of an IPsec protocol. proto_num A pointer to a protocol number. conditions. RETURN VALUES
The getipsecprotobyname() function returns a protocol number upon success, or -1 if the protocol specified does not exist. The getipsecprotobynum() function returns a protocol name upon success, or the NULL value if the protocol number specified does not exist. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWcsl (32 bit) | +-----------------------------+-----------------------------+ | |SUNWcslx (64 bit) | +-----------------------------+-----------------------------+ |MT Level |MT Safe | +-----------------------------+-----------------------------+ |Interface Stability |Evolving | +-----------------------------+-----------------------------+ SEE ALSO
ipsecalgs(1M), getipsecalgbyname(3NSL), getipsecalgbynum(3NSL), attributes(5) Piper, D. RFC 2407, The Internet IP Security Domain of Interpretation for ISAKMP. Network Working Group. November, 1998. SunOS 5.10 13 Aug 2003 getipsecprotobyname(3NSL)