Part of the CCNx C Library. More...
Go to the source code of this file.
Functions | |
void | ccn_setup_sockaddr_un (const char *portstr, struct sockaddr_un *result) |
Set up a unix-domain socket address for contacting ccnd. | |
int | ccn_setup_sockaddr_in (const char *name, struct sockaddr *result, int length) |
Set up a Internet socket address for contacting ccnd. |
Part of the CCNx C Library.
Copyright (C) 2009 Palo Alto Research Center, Inc.
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License version 2.1 as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Definition in file ccn_setup_sockaddr_un.c.
int ccn_setup_sockaddr_in | ( | const char * | name, | |
struct sockaddr * | result, | |||
int | length | |||
) |
Set up a Internet socket address for contacting ccnd.
The name must be of the form "tcp[4|6][:port]" If there is no port specified, the environment variable CCN_LOCAL_PORT is checked. Bad port specifications will result in the default port (9695) being used. If neither "4" nor "6" is present, the code will prefer the IPv4 localhost address.
Definition at line 84 of file ccn_setup_sockaddr_un.c.
Referenced by ccn_connect().
void ccn_setup_sockaddr_un | ( | const char * | portstr, | |
struct sockaddr_un * | result | |||
) |
Set up a unix-domain socket address for contacting ccnd.
If the environment variable CCN_LOCAL_SOCKNAME is set and not empty, it supplies the name stem; otherwise the compiled-in default is used.
If portstr is NULL or empty, the environment variable CCN_LOCAL_PORT is checked. If the portstr specifies something other than the ccnx registered port number, the socket name is modified accordingly.
portstr | - numeric port; use NULL for default. |
Definition at line 54 of file ccn_setup_sockaddr_un.c.
Referenced by ccn_connect(), ccnd_get_local_sockname(), main(), and r_net_get_local_sockname().