conexus I/O Library 0.5.98 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News conexus I/O Library 0.5.98 (Default branch)
# 1  
Old 01-09-2009
conexus I/O Library 0.5.98 (Default branch)

Imageconexus is a generalized C++ I/O library thatincludes support for IPv4 and IPv6 sockets,serial/TTY communications, kernel message queues,pipes, and files. Objects use sigc++ forsignalling property changes and other information.A companion library, conexusmm, provides a set ofgtkmm widgets.License: GNU General Public License v3Changes:
This is a preview release heading to 0.6.0. The biggest additions to this release are the additional endpoints including kernel message queues, OpenSSL, NSPR, and NSS. There are also numerous bugfixes and rewrites.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
REMCTL_SET_SOURCE_IP(3) 				     remctl Library Reference					   REMCTL_SET_SOURCE_IP(3)

NAME
remctl_set_source_ip - Set source IP for remctl client connections SYNOPSIS
#include <remctl.h> int remctl_set_source_ip(struct remctl *r, const char *source); DESCRIPTION
remctl_set_source_ip() sets the source IP address for subsequent calls to remctl_open() on the same struct remctl object. Call this function before remctl_open() if remctl client connections need to come from a specific source IP. The source parameter may be an IPv4 or IPv6 address (assuming the host supports IPv6). Be aware that if you set an IPv4 source address and then attempt to connect to an IPv6 address or IPv6-only host, or if you set an IPv6 address and then attempt to connect to an IPv4 address or IPv4-only host, you will get a connection failure error from remctl_open(). RETURN VALUE
remctl_set_source_ip() returns true on success and false on failure. On failure, the caller should call remctl_error() to retrieve the error message. SEE ALSO
remctl_new(3), remctl_open(3), remctl_error(3) The current version of the remctl library and complete details of the remctl protocol are available from its web page at <http://www.eyrie.org/~eagle/software/remctl/>. AUTHOR
Russ Allbery <rra@stanford.edu> COPYRIGHT AND LICENSE
Copyright 2011 The Board of Trustees of the Leland Stanford Junior University Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without any warranty. 3.2 2012-06-19 REMCTL_SET_SOURCE_IP(3)