HomeSort by: relevance | last modified time | path
    Searched defs:nettype (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libc/rpc/
clnt_simple.c 85 char nettype[NETIDLEN]; /* Network type */ member in struct:rpc_call_private
118 * the future calls to same prog, vers, host and nettype combination.
132 const char * nettype) /* nettype */
141 /* XXX: nettype may be NULL ??? */
166 if ((nettype == NULL) || (nettype[0] == 0))
167 nettype = "netpath";
172 (!strcmp(rcp->nettype, nettype)))) {
    [all...]
rpc_generic.c 68 #include <rpc/nettype.h>
81 int nettype; member in struct:handle
212 * Returns the type of the network as defined in <rpc/nettype.h>
213 * If nettype is NULL, it defaults to NETPATH.
216 getnettype(const char *nettype)
220 if ((nettype == NULL) || (nettype[0] == 0)) {
225 nettype = strlocase(nettype);
228 if (strcasecmp(nettype, _rpctypelist[i].name) == 0)
    [all...]

Completed in 14 milliseconds