/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
*/
/* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */
/* All Rights Reserved */
/*
* Portions of this source code were derived from Berkeley
* 4.3 BSD under license from the Regents of the University of
* California.
*/
#ifdef PORTMAP
/*
* interface to pmap rpc service.
*/
#include "mt.h"
#include "rpc_mt.h"
#include <netdir.h>
#include <rpc/pmap_prot.h>
#include <rpc/pmap_clnt.h>
#include <rpc/pmap_rmt.h>
#include <string.h>
#include <syslog.h>
#include <unistd.h>
int use_portmapper = 0;
/*
* Set a mapping between program, version and port.
* Calls the pmap service remotely to do the mapping.
*/
{
return (FALSE);
if (!nconf)
return (FALSE);
if (!na) {
return (FALSE);
}
return (rslt);
}
/*
* Remove the mapping between program, version and port.
* Calls the pmap service remotely to do the un-mapping.
*/
{
if (nconf) {
}
if (nconf) {
}
/*
* XXX: The call may still succeed even if only one of the
* calls succeeded. This was the best that could be
* done for backward compatibility.
*/
}
/*
* Find the mapped port for program, version.
* Calls the pmap service remotely to do the lookup.
* Returns 0 if no map exists.
*
* XXX: It talks only to the portmapper and not to the rpcbind
* service. There may be implementations out there which do not
* run portmapper as a part of rpcbind.
*/
{
} else if (port == 0) {
}
}
return (port);
}
/*
* Get a copy of the current port maps.
* Calls the pmap service remotely to do get the maps.
*/
struct pmaplist *
{
minutetimeout.tv_usec = 0;
}
}
}
/*
* pmapper remote-call-service interface.
* This routine is used to call the pmapper remote call service
* which will look up a service program in the port maps, and then
* remotely call that routine with the given parameters. This allows
* programs to do a lookup and call in one step.
*/
enum clnt_stat
{
struct p_rmtcallargs a;
struct p_rmtcallres r;
} else {
stat = RPC_FAILED;
}
return (stat);
}
#endif /* PORTMAP */