391 lines
11 KiB
HTML
391 lines
11 KiB
HTML
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||
|
<meta name="Copyright" content="Copyright (c) 2006 by IBM Corporation">
|
||
|
<title>clnt_tli_create()--Create a Client Handle</title>
|
||
|
<!-- Begin Header Records ========================================== -->
|
||
|
<!-- All rights reserved. Licensed Materials Property of IBM -->
|
||
|
<!-- US Government Users Restricted Rights -->
|
||
|
<!-- Use, duplication or disclosure restricted by -->
|
||
|
<!-- GSA ADP Schedule Contract with IBM Corp. -->
|
||
|
<!-- Change History: -->
|
||
|
<!-- YYMMDD USERID Change description -->
|
||
|
<!-- RPCMST SCRIPT A converted by B2H R4.1 (346) (CMS) by PMHALL at -->
|
||
|
<!-- RCHVMW2 on 7 Oct 1998 at 23:43:14 -->
|
||
|
<!-- Edited by Kersten Feb 02 -->
|
||
|
<!-- End Header Records -->
|
||
|
<link rel="stylesheet" type="text/css" href="../rzahg/ic.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<!--Java sync-link-->
|
||
|
<script language="Javascript" src="../rzahg/synch.js" type="text/javascript">
|
||
|
</script>
|
||
|
|
||
|
<h2>clnt_tli_create()--Create a Client Handle</h2>
|
||
|
|
||
|
<div class="box" style="width: 60%;">
|
||
|
<br>
|
||
|
Syntax<br>
|
||
|
<!-- iddvc RMBR -->
|
||
|
<br>
|
||
|
<pre>
|
||
|
#include <rpc/rpc.h>
|
||
|
#include <netconfig.h>
|
||
|
|
||
|
CLIENT *clnt_tli_create(const int <em>fildes</em>,
|
||
|
const struct netconfig
|
||
|
*<em>netconf</em>,
|
||
|
const struct netbuf *<em>svcaddr</em>,
|
||
|
const u_long <em>prognum</em>,
|
||
|
const u_long <em>versnum</em>,
|
||
|
const u_int <em>sendsz</em>,
|
||
|
const u_int <em>recvsz</em>);
|
||
|
</pre>
|
||
|
|
||
|
<br>
|
||
|
Service Program Name: QZNFTRPC<br>
|
||
|
<!-- iddvc RMBR -->
|
||
|
<br>
|
||
|
Default Public Authority: *USE<br>
|
||
|
<!-- iddvc RMBR -->
|
||
|
<br>
|
||
|
Threadsafe: No<br>
|
||
|
<!-- iddvc RMBR -->
|
||
|
<br>
|
||
|
</div>
|
||
|
|
||
|
<p>The <strong>clnt_tli_create()</strong> API creates an RPC client handle for
|
||
|
the remote program <em>prognum</em> and version <em>versnum</em>. The remote
|
||
|
program is located at address <em>svcaddr</em>. The client uses the transport
|
||
|
that is specified by <em>netconf</em>. Depending upon the type of the transport
|
||
|
(connection-oriented or connectionless), <strong>clnt_tli_create()</strong>
|
||
|
calls the appropriate client-creation functions.</p>
|
||
|
|
||
|
<br>
|
||
|
|
||
|
|
||
|
<h3>Parameters</h3>
|
||
|
|
||
|
<dl>
|
||
|
<dt><strong>fildes</strong> (Input) </dt>
|
||
|
|
||
|
<dd>A file descriptor. The only permitted value is RPC_ANYFD. The API opens an
|
||
|
internal file descriptor which is not accessible by the user applications.<br>
|
||
|
<br>
|
||
|
</dd>
|
||
|
|
||
|
<dt><strong>netconf</strong> (Input) </dt>
|
||
|
|
||
|
<dd>The transport protocol.<br>
|
||
|
<br>
|
||
|
</dd>
|
||
|
|
||
|
<dt><strong>svcaddr</strong> (Input) </dt>
|
||
|
|
||
|
<dd>A pointer to the address where the remote program is located.<br>
|
||
|
<br>
|
||
|
</dd>
|
||
|
|
||
|
<dt><strong>prognum</strong> (Input) </dt>
|
||
|
|
||
|
<dd>The program number of the remote program.<br>
|
||
|
<br>
|
||
|
</dd>
|
||
|
|
||
|
<dt><strong>vernum</strong> (Input) </dt>
|
||
|
|
||
|
<dd>The version number of the remote program.<br>
|
||
|
<br>
|
||
|
</dd>
|
||
|
|
||
|
<dt><strong>sendsz</strong> (Input) </dt>
|
||
|
|
||
|
<dd>The size of the send buffer. When a value of zero is specified, a suitable
|
||
|
default will be chosen by the system.<br>
|
||
|
<br>
|
||
|
</dd>
|
||
|
|
||
|
<dt><strong>recvsz</strong> (Input) </dt>
|
||
|
|
||
|
<dd>The size of the receive buffer. When a value of zero is specified, a
|
||
|
suitable default will be chosen by the system.</dd>
|
||
|
</dl>
|
||
|
|
||
|
<br>
|
||
|
|
||
|
|
||
|
<h3>Authorities</h3>
|
||
|
|
||
|
<p>No authorization is required.</p>
|
||
|
|
||
|
<br>
|
||
|
|
||
|
|
||
|
<h3>Return Value</h3>
|
||
|
|
||
|
<table cellpadding="5">
|
||
|
<!-- cols="15 85" -->
|
||
|
<tr>
|
||
|
<td align="left" valign="top"><em>clnt</em></td>
|
||
|
<td align="left" valign="top">Upon successful completion, this function returns
|
||
|
a client handle.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td align="left" valign="top"><em>NULL</em></td>
|
||
|
<td align="left" valign="top"><strong>clnt_tli_create()</strong> was not
|
||
|
successful. The <em>rpc_createerr</em> variable is set to indicate the
|
||
|
reason.</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
<br>
|
||
|
<br>
|
||
|
|
||
|
|
||
|
<h3>Error Conditions</h3>
|
||
|
|
||
|
<p>Upon failure, <strong>clnt_tli_create()</strong> sets the global structure
|
||
|
<em>rpc_createerr</em>. The <em>rpc_createerr.cf_stat</em> variable contains a
|
||
|
status value that indicates the error reason. The
|
||
|
<em>rpc_createerr.cf_error.re_errno</em> variable is meaningful when some
|
||
|
status values are set.</p>
|
||
|
|
||
|
<p>The <em>rpc_createerr.cf_stat</em> variable can be set to one of the
|
||
|
following values:</p>
|
||
|
|
||
|
<table cellpadding="5">
|
||
|
<!-- cols="25 75" -->
|
||
|
<tr>
|
||
|
<td align="left" valign="top"><em>[RPC_INTR]</em></td>
|
||
|
<td align="left" valign="top">Interrupted RPC call. An exception has occurred
|
||
|
in the RPC API. The <em>rpc_createerr.cf_error.re_errno</em> is set to
|
||
|
EUNKNOWN.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td align="left" valign="top"><em>[RPC_SYSTEMERROR]</em></td>
|
||
|
<td align="left" valign="top">RPC error returned from system call. The
|
||
|
<em>rpc_createerr.cf_error.re_errno</em> variable is set to the value returned
|
||
|
from the failed call.
|
||
|
|
||
|
<table cellpadding="5">
|
||
|
<tr>
|
||
|
<td align="left" valign="top"><em>[EACCES]</em></td>
|
||
|
<td align="left" valign="top">Permission denied.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td align="left" valign="top"><em>[EADDRINUSE]</em></td>
|
||
|
<td align="left" valign="top">Local address is in use. This value is set when
|
||
|
<em>fildes</em> cannot be bound to any local address.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td align="left" valign="top"><em>[EADDRNOTAVAIL]</em></td>
|
||
|
<td align="left" valign="top">Address not available. This value is set when
|
||
|
<em>svcaddr</em> is rejected by the transport layer.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td align="left" valign="top"><em>[EAGAIN]</em></td>
|
||
|
<td align="left" valign="top">Operation would have caused the process to be
|
||
|
blocked.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td align="left" valign="top"><em>[EBADF]</em></td>
|
||
|
<td align="left" valign="top">Bad file descriptor. This value is set when the
|
||
|
<em>fildes</em> parameter is <em>not valid</em> or cannot be used as a
|
||
|
transport endpoint.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td align="left" valign="top"><em>[ECONNREFUSED]</em></td>
|
||
|
<td align="left" valign="top">TI-RPC encountered a problem in the transport.
|
||
|
The client cannot connect to the server.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td align="left" valign="top"><em>[EFAULT]</em></td>
|
||
|
<td align="left" valign="top">The address used for an <em>svcaddr</em> was not
|
||
|
available.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td align="left" valign="top"><em>[EIO]</em></td>
|
||
|
<td align="left" valign="top">Input/output error. This value is set as a result
|
||
|
of network transport failure. It indicates that RPC cannot handle an error that
|
||
|
occurred in lower transport levels.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td align="left" valign="top"><em>[ENOBUFS]</em></td>
|
||
|
<td align="left" valign="top">There is not enough buffer space available for
|
||
|
the API.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td align="left" valign="top"><em>[ENOMEM]</em></td>
|
||
|
<td align="left" valign="top">Out of memory.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td align="left" valign="top"><em>[EOPNOTSUPP]</em></td>
|
||
|
<td align="left" valign="top">Operation is not supported. This value is set
|
||
|
when <em>fildes</em> represents a transport endpoint with limited
|
||
|
capabilities.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td align="left" valign="top"><em>[EUNKNOWN]</em></td>
|
||
|
<td align="left" valign="top">Unknown system state.</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td align="left" valign="top"><em>[RPC_UNKNOWNADDR]</em></td>
|
||
|
<td align="left" valign="top">Unknown remote address. The
|
||
|
<em>rpc_createerr.cf_error.re_errno</em> variable is not applicable. This error
|
||
|
is set when the <em>svcaddr</em> pointer is NULL.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td align="left" valign="top"><em>[RPC_UNKNOWNPROTO]</em></td>
|
||
|
<td align="left" valign="top">Unknown client/server protocol. The
|
||
|
<em>rpc_createerr.cf_error.re_errno</em> variable is not applicable. This error
|
||
|
is set when the <em>netconf</em> pointer is NULL.</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
<br>
|
||
|
<br>
|
||
|
|
||
|
|
||
|
<h3>Error Messages</h3>
|
||
|
|
||
|
<table width="100%" cellpadding="5">
|
||
|
<tr>
|
||
|
<th align="left" valign="top">Message ID</th>
|
||
|
<th align="left" valign="top">Error Message Text</th>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td width="15%" valign="top">CPIA1B1 I</td>
|
||
|
<td width="85%" valign="top">A problem was encountered in the RPC client.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td align="left" valign="top">CPIA1B2 I</td>
|
||
|
<td align="left" valign="top">TI-RPC encountered a problem in the transport
|
||
|
protocol.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td align="left" valign="top">CPE3418 E</td>
|
||
|
<td align="left" valign="top">Possible APAR condition or hardware failure.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td align="left" valign="top">CPF3CF2 E</td>
|
||
|
<td align="left" valign="top">Error(s) occurred during running of &1
|
||
|
API.</td>
|
||
|
</tr>
|
||
|
|
||
|
<tr>
|
||
|
<td align="left" valign="top">CPF9872 E</td>
|
||
|
<td align="left" valign="top">Program or service program &1 in library
|
||
|
&2 ended. Reason code &3.</td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
|
||
|
<br>
|
||
|
<br>
|
||
|
|
||
|
|
||
|
<h3>Related Information</h3>
|
||
|
|
||
|
<ul>
|
||
|
<li><a href="clnt_create.htm">clnt_create()--Create a Generic Client
|
||
|
Handle</a></li>
|
||
|
|
||
|
<li><a href="clnt_tp_create.htm">clnt_tp_create()--Create a Client
|
||
|
Handle</a></li>
|
||
|
</ul>
|
||
|
|
||
|
<br>
|
||
|
|
||
|
|
||
|
<h3>Example</h3>
|
||
|
|
||
|
<p>See <a href="../apiref/aboutapis.htm#codedisclaimer">Code disclaimer information</a>
|
||
|
for information pertaining to code examples.</p>
|
||
|
|
||
|
<p>The following example shows how <strong>clnt_tli_create()</strong> is
|
||
|
used:</p>
|
||
|
|
||
|
<pre>
|
||
|
/* Define remote program number and version */
|
||
|
#define RMTPROGNUM ((u_long)0x3fffffff)
|
||
|
#define RMTPROGVER ((u_long)0x1)
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <rpc/rpc.h>
|
||
|
#include <netconfig.h>
|
||
|
#include <netdir.h>
|
||
|
|
||
|
main()
|
||
|
{
|
||
|
CLIENT *client;
|
||
|
struct netconfig *nconf;
|
||
|
struct netbuf *service_address;
|
||
|
struct nd_addrlist *nas;
|
||
|
struct nd_hostserv hs;
|
||
|
|
||
|
/* Returns a pointer to nconf corresponding to NETCONF */
|
||
|
if ((nconf = getnetconfigent("UDP")) ==
|
||
|
(struct netconfig *)NULL) {
|
||
|
fprintf(stderr, "Cannot get netconfig entry for UDP\n");
|
||
|
exit(1);
|
||
|
}
|
||
|
|
||
|
hs.h_host = "as400.somewhere.ibm.com";
|
||
|
hs.h_serv = "RPCBIN";
|
||
|
if(netdir_getbyname(nconf,&hs,&nas) < 0
|
||
|
|| nas->n_cnt == 0) {
|
||
|
fprintf(stderr, "Cannot translate host name or service name\n");
|
||
|
service_address = nas->n_addrs;
|
||
|
|
||
|
client = <strong>clnt_tli_create</strong>(RPC_ANYFD, nconf, service_address,
|
||
|
RMTPROGNUM, RMTPROGVER, 0, 0);
|
||
|
if (client == (CLIENT *)NULL) {
|
||
|
fprintf(stderr, "Cannot create an RPC client\n");
|
||
|
exit(1);
|
||
|
}
|
||
|
|
||
|
fprintf(stderr, "Successfully created a client handle\n");
|
||
|
|
||
|
clnt_destroy(client);
|
||
|
}
|
||
|
</pre>
|
||
|
|
||
|
<br>
|
||
|
<hr>
|
||
|
API introduced: V4R2
|
||
|
|
||
|
<hr>
|
||
|
<table cellpadding="2" cellspacing="2" align="center">
|
||
|
<tr align="center">
|
||
|
<td valign="middle" align="center"><a href="#Top_Of_Page">Top</a> | <a href=
|
||
|
"rpc1.htm">Remote Procedure Call (RPC) APIs</a> | <a href="aplist.htm">APIs by
|
||
|
category</a></td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|
||
|
|