Directory Tree

.
├── DISCLAIMER
├── Makefile
├── Makefile.master
├── README
├── cmd
│   ├── Makefile
│   ├── Makefile.cmd
│   ├── Makefile.targ
│   ├── demo
│   │   ├── Makefile
│   │   ├── dir
│   │   │   ├── Makefile
│   │   │   ├── dir.x
│   │   │   ├── dir_proc.c
│   │   │   └── rls.c
│   │   ├── msg
│   │   │   ├── Makefile
│   │   │   ├── msg.x
│   │   │   ├── msg_proc.c
│   │   │   ├── printmsg.c
│   │   │   └── rprintmsg.c
│   │   ├── sort
│   │   │   ├── Makefile
│   │   │   ├── rsort.c
│   │   │   ├── sort.x
│   │   │   └── sort_proc.c
│   │   └── whoami
│   │       ├── Makefile
│   │       ├── rme.c
│   │       ├── whoami.x
│   │       └── whoami_proc.c
│   ├── keyserv
│   │   ├── Makefile
│   │   ├── chkey.c
│   │   ├── chkey_common.c
│   │   ├── detach.c
│   │   ├── domainname.c
│   │   ├── generic.c
│   │   ├── key_generic.c
│   │   ├── keylogin.c
│   │   ├── keylogout.c
│   │   ├── keyserv.c
│   │   ├── newkey.c
│   │   ├── random.c
│   │   ├── setkey.c
│   │   └── update.c
│   ├── perf_suite
│   │   ├── README
│   │   ├── client.c
│   │   ├── clnt_tli.c
│   │   ├── clnt_tli_lib.c
│   │   ├── gethrtime.s
│   │   ├── makefile
│   │   ├── makefile.41
│   │   ├── makefile.svr4
│   │   ├── raw_server.c
│   │   ├── raw_test_svc.c
│   │   ├── runall
│   │   ├── runall.41
│   │   ├── runlocal
│   │   ├── runtests
│   │   ├── runtests.raw
│   │   ├── runtests.tli
│   │   ├── server.c
│   │   ├── server_41.c
│   │   ├── server_tli.c
│   │   ├── stat.c
│   │   ├── test.c
│   │   ├── test.x
│   │   ├── test_main.c
│   │   ├── test_main_41.c
│   │   ├── test_raw.c
│   │   ├── test_raw_41.c
│   │   └── util.c
│   ├── rpcbind
│   │   ├── Makefile
│   │   ├── check_bound.c
│   │   ├── pmap_svc.c
│   │   ├── rpcb_stat.c
│   │   ├── rpcb_svc.c
│   │   ├── rpcb_svc_4.c
│   │   ├── rpcb_svc_com.c
│   │   ├── rpcbind.c
│   │   ├── rpcbind.h
│   │   ├── rpcbind.mk
│   │   └── warmstart.c
│   ├── rpcgen
│   │   ├── Makefile
│   │   ├── rpc_clntout.c
│   │   ├── rpc_cout.c
│   │   ├── rpc_hout.c
│   │   ├── rpc_main.c
│   │   ├── rpc_parse.c
│   │   ├── rpc_parse.h
│   │   ├── rpc_sample.c
│   │   ├── rpc_scan.c
│   │   ├── rpc_scan.h
│   │   ├── rpc_svcout.c
│   │   ├── rpc_tblout.c
│   │   ├── rpc_util.c
│   │   ├── rpc_util.h
│   │   └── rpcgen.mk
│   └── rpcinfo
│       ├── Makefile
│       └── rpcinfo.c
├── demo
│   ├── Makefile
│   ├── dir
│   │   ├── Makefile
│   │   ├── dir.x
│   │   ├── dir_proc.c
│   │   └── rls.c
│   ├── mandel
│   │   ├── COPYRIGHT
│   │   ├── Makefile
│   │   ├── hosts
│   │   ├── mandel.6
│   │   ├── mandel_icon
│   │   ├── mandel_init.c
│   │   ├── mandel_init.h
│   │   ├── mandel_proc.c
│   │   ├── mandel_rpc.x
│   │   └── rgb.txt
│   ├── msg
│   │   ├── Makefile
│   │   ├── msg.x
│   │   ├── msg_proc.c
│   │   ├── printmsg.c
│   │   └── rprintmsg.c
│   ├── sort
│   │   ├── Makefile
│   │   ├── rsort.c
│   │   ├── sort.x
│   │   └── sort_proc.c
│   └── whoami
│       ├── Makefile
│       ├── rme.c
│       ├── whoami.x
│       └── whoami_proc.c
├── doc
│   ├── 00_sunsoft_paper.ps
│   ├── 01_NIPG_cover.ps
│   ├── 02_NIPG_credits.ps
│   ├── 03_NIPGTOC.ps
│   ├── 04_NIPGLOF.ps
│   ├── 05_preface.ps
│   ├── 06_rpc_intro.ps
│   ├── 07_rpcgen_pguide.ps
│   ├── 08_rpc_pguide.ps
│   ├── 09_xdr_proto.ps
│   ├── 10_rpc_proto.ps
│   ├── 11_xdr_nts.ps
│   ├── 12_portmapper.ps
│   ├── 13_LiveCode.ps
│   ├── 14_rpc2tirpc.ps
│   ├── 15_NIPGIX.ps
│   ├── Makefile
│   ├── cover.ms
│   ├── end.ms
│   ├── nfs.rfc.ms
│   ├── rpc.prog.ms
│   ├── rpc.rfc.ms
│   ├── rpcgen.ms
│   ├── rpcintro.ms
│   ├── rpcprog.ms
│   ├── xdr.nts.ms
│   └── xdr.rfc.ms
├── etc
│   ├── Makefile
│   ├── getopt.c
│   ├── netconfig
│   ├── portmap.c
│   ├── rpc
│   └── rpcinfo.c
├── head
│   ├── Makefile
│   └── rpcsvc
│       ├── autofs_prot.x
│       ├── bootparam.h
│       ├── bootparam_prot.x
│       ├── dbm.h
│       ├── klm_prot.x
│       ├── mount.h
│       ├── mount.x
│       ├── nfs_prot.x
│       ├── nis.x
│       ├── nis_cache.x
│       ├── nis_callback.x
│       ├── nis_db.h
│       ├── nis_object.x
│       ├── nis_tags.h
│       ├── nislib.h
│       ├── nlm_prot.x
│       ├── rex.x
│       ├── rquota.x
│       ├── rstat.x
│       ├── rusers.x
│       ├── rwall.x
│       ├── sm_inter.x
│       ├── spray.x
│       ├── yp.x
│       ├── yp_prot.h
│       ├── ypclnt.h
│       └── ypupd.h
├── index.htm
├── install
│   ├── Makefile
│   ├── deinstall.onctk
│   ├── install.onctk
│   ├── keyserv.sed
│   ├── ldconfig.sed
│   ├── onctk.icon
│   ├── rpcbind.sed
│   └── tli.sed
├── keyserv
│   ├── Makefile
│   ├── chkey.c
│   ├── detach.c
│   ├── domainname.c
│   ├── generic.c
│   ├── key_generic.c
│   ├── keyenvoy.c
│   ├── keylogin.c
│   ├── keylogout.c
│   ├── keyserv.c
│   ├── newkey.c
│   ├── setkey.c
│   └── update.c
├── lib
│   ├── Makefile
│   ├── Makefile.lib
│   ├── Makefile.mach
│   ├── Makefile.targ
│   ├── librac
│   │   ├── Makefile
│   │   └── rpc
│   │       ├── clnt_dg.c
│   │       ├── clnt_generic.c
│   │       ├── clnt_vc.c
│   │       ├── rac.c
│   │       ├── rac_private.h
│   │       ├── rpcb_clnt.c
│   │       ├── xdr_rec.c
│   │       └── xdr_rec_subr.c
│   └── librpc
│       ├── Makefile
│       ├── key
│       │   ├── publickey.c
│       │   └── xcrypt.c
│       ├── libnsl.mk
│       ├── netdir
│       │   ├── nd_comdata.c
│       │   ├── netdir.c
│       │   └── netdir.mk
│       ├── netsel
│       │   ├── Makefile
│       │   ├── getnetconfig.c
│       │   └── getnetpath.c
│       └── rpc
│           ├── auth_des.c
│           ├── auth_none.c
│           ├── auth_sys.c
│           ├── auth_time.c
│           ├── authdes_prot.c
│           ├── authsys_prot.c
│           ├── clnt_bcast.c
│           ├── clnt_bsoc.c
│           ├── clnt_dg.c
│           ├── clnt_generic.c
│           ├── clnt_perror.c
│           ├── clnt_raw.c
│           ├── clnt_simple.c
│           ├── clnt_vc.c
│           ├── getdname.c
│           ├── gethost_switch.c
│           ├── gethostent.c
│           ├── gethostname.c
│           ├── getrpcent.c
│           ├── gthostnamadr.c
│           ├── inet_ntoa.c
│           ├── key_call.c
│           ├── mt_misc.c
│           ├── netname.c
│           ├── netnamer.c
│           ├── openchild.c
│           ├── pmap_clnt.c
│           ├── pmap_prot.c
│           ├── port.c
│           ├── rpc.mk
│           ├── rpc_callmsg.c
│           ├── rpc_comdata.c
│           ├── rpc_generic.c
│           ├── rpc_mt.h
│           ├── rpc_prot.c
│           ├── rpc_sel2poll.c
│           ├── rpc_soc.c
│           ├── rpc_td.c
│           ├── rpc_trace.c
│           ├── rpcb_clnt.c
│           ├── rpcb_prot.c
│           ├── rpcb_st_xdr.c
│           ├── rpcdname.c
│           ├── rtime_tli.c
│           ├── svc.c
│           ├── svc_auth.c
│           ├── svc_auth_sys.c
│           ├── svc_dg.c
│           ├── svc_generic.c
│           ├── svc_raw.c
│           ├── svc_run.c
│           ├── svc_simple.c
│           ├── svc_vc.c
│           ├── svcauth_des.c
│           ├── svcdesname.c
│           ├── svid_funcs.c
│           ├── ti_opts.c
│           ├── xdr.c
│           ├── xdr_array.c
│           ├── xdr_float.c
│           ├── xdr_mem.c
│           ├── xdr_rec.c
│           ├── xdr_refer.c
│           ├── xdr_sizeof.c
│           └── xdr_stdio.c
├── man
│   ├── Makefile
│   ├── Makefile.man
│   ├── man1
│   │   ├── Makefile
│   │   ├── chkey.1
│   │   ├── keylogin.1
│   │   ├── keylogout.1
│   │   ├── rpcgen.1
│   │   └── rstat.1
│   ├── man1m
│   │   ├── Makefile
│   │   ├── keyserv.1m
│   │   ├── newkey.1m
│   │   ├── rpcbind.1m
│   │   └── rpcinfo.1m
│   ├── man3
│   │   ├── Makefile
│   │   ├── auth_destroy.3n
│   │   ├── authdes_create.3n
│   │   ├── authdes_getucred.3n
│   │   ├── authdes_seccreate.3n
│   │   ├── authnone_create.3n
│   │   ├── authsys_create.3n
│   │   ├── authsys_create_default.3n
│   │   ├── authunix_create.3n
│   │   ├── authunix_create_default.3n
│   │   ├── bindresvport.3n
│   │   ├── callrpc.3n
│   │   ├── clnt_broadcast.3n
│   │   ├── clnt_call.3n
│   │   ├── clnt_control.3n
│   │   ├── clnt_create.3n
│   │   ├── clnt_create_vers.3n
│   │   ├── clnt_destroy.3n
│   │   ├── clnt_dg_create.3n
│   │   ├── clnt_freeres.3n
│   │   ├── clnt_geterr.3n
│   │   ├── clnt_pcreateerror.3n
│   │   ├── clnt_perrno.3n
│   │   ├── clnt_perror.3n
│   │   ├── clnt_raw_create.3n
│   │   ├── clnt_spcreateerror.3n
│   │   ├── clnt_sperrno.3n
│   │   ├── clnt_sperror.3n
│   │   ├── clnt_tli_create.3n
│   │   ├── clnt_tp_create.3n
│   │   ├── clnt_vc_create.3n
│   │   ├── clntraw_create.3n
│   │   ├── clnttcp_create.3n
│   │   ├── clntudp_bufcreate.3n
│   │   ├── clntudp_create.3n
│   │   ├── endnetconfig.3n
│   │   ├── endnetpath.3n
│   │   ├── freenetconfigent.3n
│   │   ├── get_myaddress.3n
│   │   ├── getnetconfig.3n
│   │   ├── getnetconfigent.3n
│   │   ├── getnetname.3n
│   │   ├── getnetpath.3n
│   │   ├── getrpcent.3n
│   │   ├── getrpcport.3r
│   │   ├── host2netname.3n
│   │   ├── key_decryptsession.3n
│   │   ├── key_encryptsession.3n
│   │   ├── key_gendes.3n
│   │   ├── key_setsecret.3n
│   │   ├── netdir.3n
│   │   ├── netdir_free.3n
│   │   ├── netdir_getbyaddr.3n
│   │   ├── netdir_getbyname.3n
│   │   ├── netdir_options.3n
│   │   ├── netdir_perror.3n
│   │   ├── netdir_sperror.3n
│   │   ├── netname2host.3n
│   │   ├── netname2user.3n
│   │   ├── pmap_getmaps.3n
│   │   ├── pmap_getport.3n
│   │   ├── pmap_rmtcall.3n
│   │   ├── pmap_set.3n
│   │   ├── pmap_unset.3n
│   │   ├── publickey.3r
│   │   ├── rac_drop.3n
│   │   ├── rac_poll.3n
│   │   ├── rac_recv.3n
│   │   ├── rac_send.3n
│   │   ├── registerrpc.3n
│   │   ├── rpc.3n
│   │   ├── rpc_broadcast.3n
│   │   ├── rpc_call.3n
│   │   ├── rpc_clnt_auth.3n
│   │   ├── rpc_clnt_calls.3n
│   │   ├── rpc_clnt_create.3n
│   │   ├── rpc_createrr.3n
│   │   ├── rpc_rac.3n
│   │   ├── rpc_reg.3n
│   │   ├── rpc_rpcbind.3n
│   │   ├── rpc_svc_calls.3n
│   │   ├── rpc_svc_create.3n
│   │   ├── rpc_svc_err.3n
│   │   ├── rpc_svc_reg.3n
│   │   ├── rpc_xdr.3n
│   │   ├── rpcb_getaddr.3n
│   │   ├── rpcb_getmaps.3n
│   │   ├── rpcb_gettime.3n
│   │   ├── rpcb_rmtcall.3n
│   │   ├── rpcb_set.3n
│   │   ├── rpcb_unset.3n
│   │   ├── secure_rpc.3n
│   │   ├── setnetconfig.3n
│   │   ├── setnetpath.3n
│   │   ├── svc_create.3n
│   │   ├── svc_destroy.3n
│   │   ├── svc_dg_create.3n
│   │   ├── svc_dg_enablecache.3n
│   │   ├── svc_fd_create.3n
│   │   ├── svc_fds.3n
│   │   ├── svc_fdset.3n
│   │   ├── svc_freeargs.3n
│   │   ├── svc_getargs.3n
│   │   ├── svc_getcaller.3n
│   │   ├── svc_getreq.3n
│   │   ├── svc_getreqset.3n
│   │   ├── svc_getrpccaller.3n
│   │   ├── svc_raw_create.3n
│   │   ├── svc_reg.3n
│   │   ├── svc_register.3n
│   │   ├── svc_run.3n
│   │   ├── svc_sendreply.3n
│   │   ├── svc_tli_create.3n
│   │   ├── svc_tp_create.3n
│   │   ├── svc_unreg.3n
│   │   ├── svc_unregister.3n
│   │   ├── svc_vc_create.3n
│   │   ├── svcerr_auth.3n
│   │   ├── svcerr_decode.3n
│   │   ├── svcerr_noproc.3n
│   │   ├── svcerr_noprog.3n
│   │   ├── svcerr_progvers.3n
│   │   ├── svcerr_systemerr.3n
│   │   ├── svcerr_weakauth.3n
│   │   ├── svcfd_create.3n
│   │   ├── svcraw_create.3n
│   │   ├── svctcp_create.3n
│   │   ├── svcudp_bufcreate.3n
│   │   ├── svcudp_create.3n
│   │   ├── taddr2uaddr.3n
│   │   ├── uaddr2taddr.3n
│   │   ├── user2netname.3n
│   │   ├── xdr.3n
│   │   ├── xdr_accepted_reply.3n
│   │   ├── xdr_admin.3n
│   │   ├── xdr_array.3n
│   │   ├── xdr_authsys_parms.3n
│   │   ├── xdr_authunix_parms.3n
│   │   ├── xdr_bool.3n
│   │   ├── xdr_bytes.3n
│   │   ├── xdr_callhdr.3n
│   │   ├── xdr_callmsg.3n
│   │   ├── xdr_char.3n
│   │   ├── xdr_complex.3n
│   │   ├── xdr_create.3n
│   │   ├── xdr_destroy.3n
│   │   ├── xdr_double.3n
│   │   ├── xdr_enum.3n
│   │   ├── xdr_float.3n
│   │   ├── xdr_free.3n
│   │   ├── xdr_getpos.3n
│   │   ├── xdr_inline.3n
│   │   ├── xdr_int.3n
│   │   ├── xdr_long.3n
│   │   ├── xdr_netbuf.3n
│   │   ├── xdr_opaque.3n
│   │   ├── xdr_opaque_auth.3n
│   │   ├── xdr_pmap.3n
│   │   ├── xdr_pmaplist.3n
│   │   ├── xdr_pointer.3n
│   │   ├── xdr_reference.3n
│   │   ├── xdr_rejected_reply.3n
│   │   ├── xdr_replymsg.3n
│   │   ├── xdr_rpcb.3n
│   │   ├── xdr_rpcblist.3n
│   │   ├── xdr_setpos.3n
│   │   ├── xdr_short.3n
│   │   ├── xdr_simple.3n
│   │   ├── xdr_string.3n
│   │   ├── xdr_u_char.3n
│   │   ├── xdr_u_int.3n
│   │   ├── xdr_u_long.3n
│   │   ├── xdr_u_short.3n
│   │   ├── xdr_union.3n
│   │   ├── xdr_vector.3n
│   │   ├── xdr_void.3n
│   │   ├── xdr_wrapstring.3n
│   │   ├── xdrmem_create.3n
│   │   ├── xdrrec_create.3n
│   │   ├── xdrrec_endofrecord.3n
│   │   ├── xdrrec_eof.3n
│   │   ├── xdrrec_readbytes.3n
│   │   ├── xdrrec_skiprecord.3n
│   │   ├── xdrstdio_create.3n
│   │   ├── xprt_register.3n
│   │   └── xprt_unregister.3n
│   ├── man3n
│   │   ├── Makefile
│   │   ├── getnetconfig.3n
│   │   ├── getnetpath.3n
│   │   ├── getpublickey.3n
│   │   ├── getrpcent.3n
│   │   ├── netdir.3n
│   │   ├── rpc.3n
│   │   ├── rpc_clnt_auth.3n
│   │   ├── rpc_clnt_calls.3n
│   │   ├── rpc_clnt_create.3n
│   │   ├── rpc_soc.3n
│   │   ├── rpc_svc_calls.3n
│   │   ├── rpc_svc_create.3n
│   │   ├── rpc_svc_err.3n
│   │   ├── rpc_svc_reg.3n
│   │   ├── rpc_xdr.3n
│   │   ├── rpcbind.3n
│   │   ├── secure_rpc.3n
│   │   ├── xdr.3n
│   │   ├── xdr_admin.3n
│   │   ├── xdr_complex.3n
│   │   ├── xdr_create.3n
│   │   └── xdr_simple.3n
│   ├── man4
│   │   ├── Makefile
│   │   ├── netdir.4n
│   │   ├── publickey.4
│   │   └── rpc.4
│   ├── man4n
│   │   ├── Makefile
│   │   └── netdir.4n
│   ├── man5
│   │   ├── Makefile
│   │   ├── netconfig.5
│   │   ├── publickey.5
│   │   └── rpc.5
│   └── man8
│       ├── Makefile
│       ├── keyserv.8c
│       ├── newkey.8
│       ├── portmap.8c
│       ├── rpcbind.8c
│       ├── rpcinfo.8c
│       └── rstat_svc.8c
├── n2a
│   ├── Makefile
│   ├── Tables
│   │   ├── Makefile
│   │   ├── table.c
│   │   └── table.h
│   ├── local
│   │   ├── Makefile
│   │   └── local_file.c
│   └── tcpip
│       ├── Makefile
│       ├── tcpip.c
│       ├── tcpip_dns.c
│       ├── tcpip_file.c
│       └── tcpip_nis.c
├── rpc
│   ├── Makefile
│   ├── auth.h
│   ├── auth_none.c
│   ├── auth_unix.c
│   ├── auth_unix.h
│   ├── authunix_prot.c
│   ├── bindresvport.c
│   ├── clnt.h
│   ├── clnt_generic.c
│   ├── clnt_perror.c
│   ├── clnt_raw.c
│   ├── clnt_simple.c
│   ├── clnt_tcp.c
│   ├── clnt_udp.c
│   ├── get_myaddress.c
│   ├── getrpcent.c
│   ├── getrpcport.c
│   ├── netdb.h
│   ├── pmap_clnt.c
│   ├── pmap_clnt.h
│   ├── pmap_getmaps.c
│   ├── pmap_getport.c
│   ├── pmap_prot.c
│   ├── pmap_prot.h
│   ├── pmap_prot2.c
│   ├── pmap_rmt.c
│   ├── pmap_rmt.h
│   ├── rpc.h
│   ├── rpc_callmsg.c
│   ├── rpc_commondata.c
│   ├── rpc_dtablesize.c
│   ├── rpc_msg.h
│   ├── rpc_prot.c
│   ├── svc.c
│   ├── svc.h
│   ├── svc_auth.c
│   ├── svc_auth.h
│   ├── svc_auth_unix.c
│   ├── svc_raw.c
│   ├── svc_run.c
│   ├── svc_simple.c
│   ├── svc_simple_c.c
│   ├── svc_tcp.c
│   ├── svc_tcp.c.BAK
│   ├── svc_udp.c
│   ├── types.h
│   ├── xdr.c
│   ├── xdr.h
│   ├── xdr_array.c
│   ├── xdr_float.c
│   ├── xdr_mem.c
│   ├── xdr_rec.c
│   ├── xdr_reference.c
│   └── xdr_stdio.c
├── rpc_tli_design
├── rpcbind
│   ├── Makefile
│   ├── check_bound.c
│   ├── pmap_svc.c
│   ├── rpcb_svc.c
│   ├── rpcbind.c
│   ├── rpcbind.h
│   └── warmstart.c
├── rpcgen
│   ├── Makefile
│   ├── rpc_clntout.c
│   ├── rpc_cout.c
│   ├── rpc_hout.c
│   ├── rpc_main.c
│   ├── rpc_parse.c
│   ├── rpc_parse.h
│   ├── rpc_scan.c
│   ├── rpc_scan.h
│   ├── rpc_svcout.c
│   ├── rpc_tblout.c
│   ├── rpc_util.c
│   ├── rpc_util.h
│   └── rpcgen
├── rpcgen.new
│   ├── Makefile
│   ├── rpc_clntout.c
│   ├── rpc_cout.c
│   ├── rpc_hout.c
│   ├── rpc_main.c
│   ├── rpc_parse.c
│   ├── rpc_parse.h
│   ├── rpc_sample.c
│   ├── rpc_scan.c
│   ├── rpc_scan.h
│   ├── rpc_svcout.c
│   ├── rpc_tblout.c
│   ├── rpc_util.c
│   ├── rpc_util.h
│   └── rpcgen.new.1
├── rpcinfo
│   ├── Makefile
│   └── rpcinfo.c
├── rpcsrc_40.tar
├── rpcsrc_doc.ps
├── rpcsvc
│   ├── Makefile
│   ├── bootparam_prot.x
│   ├── klm_prot.x
│   ├── mount.x
│   ├── nfs_prot.x
│   ├── nlm_prot.x
│   ├── publickey.c
│   ├── rex.x
│   ├── rnusers.c
│   ├── rnusers.x
│   ├── rpcb_prot.x
│   ├── rquota.x
│   ├── rstat.c
│   ├── rstat.x
│   ├── rstat_proc.c
│   ├── rwall.c
│   ├── rwall.x
│   ├── secretkey.c
│   ├── sm_inter.x
│   ├── spray.x
│   ├── xcrypt.c
│   ├── yp.x
│   ├── yppasswd.x
│   └── ypupdate_prot.x
├── secure_rpc
│   ├── README
│   ├── bin
│   │   ├── Makefile
│   │   ├── chkey.c
│   │   └── keylogin.c
│   ├── demo
│   │   ├── Makefile
│   │   ├── rme.c
│   │   ├── whoami.x
│   │   └── whoami_proc.c
│   ├── des
│   │   ├── des.h
│   │   ├── des_crypt.c
│   │   ├── des_crypt.h
│   │   └── des_soft.c
│   ├── doc
│   │   ├── Makefile
│   │   └── nfs.secure.ms
│   ├── keyserv
│   │   ├── Makefile
│   │   ├── detach.c
│   │   ├── keyenvoy.c
│   │   ├── keyserv.c
│   │   ├── mp.c
│   │   └── setkey.c
│   ├── man
│   │   ├── chkey.1
│   │   ├── des_crypt.3
│   │   ├── keyenvoy.8c
│   │   ├── keylogin.1
│   │   ├── keyserv.8c
│   │   ├── publickey.3r
│   │   ├── publickey.5
│   │   ├── rpc_secure.3n
│   │   └── rtime.3n
│   └── rpc
│       ├── Makefile
│       ├── auth_des.c
│       ├── auth_des.h
│       ├── authdes_prot.c
│       ├── key_call.c
│       ├── key_prot.c
│       ├── key_prot.h
│       ├── key_prot.x
│       ├── netname.c
│       ├── openchild.c
│       ├── publickey.c
│       ├── rtime.c
│       ├── svc_auth.c
│       ├── svcauth_des.c
│       └── xcrypt.c
├── services
│   ├── Makefile
│   ├── rstat.c
│   └── rstat_proc.c
├── sys
│   ├── Makefile
│   └── nettli
│       ├── Makefile
│       ├── lodg_tli.h
│       ├── lodgtli.h
│       ├── lodgtli_load.sh
│       ├── udp_tli.h
│       ├── udp_tlivar.h
│       ├── udptli.h
│       └── udptli_load.sh
├── tirpc
│   ├── Makefile
│   ├── Makefile.arch
│   ├── Makefile.master
│   ├── install_librpc.sh
│   ├── lorder-sparc
│   ├── netdir
│   │   ├── Makefile
│   │   ├── nd_comdata.c
│   │   ├── netdir.c
│   │   ├── netdir.h
│   │   └── test
│   │       └── test.c
│   ├── netsel
│   │   ├── Makefile
│   │   ├── getnetconfig.c
│   │   ├── getnetpath.c
│   │   └── netconfig.h
│   ├── object_globals
│   ├── objsort.sh
│   ├── rpc
│   │   ├── Makefile
│   │   ├── auth.h
│   │   ├── auth_des.c
│   │   ├── auth_des.h
│   │   ├── auth_none.c
│   │   ├── auth_sys.c
│   │   ├── auth_sys.h
│   │   ├── auth_unix.h
│   │   ├── authdes_prot.c
│   │   ├── authdes_subr.c
│   │   ├── authsys_prot.c
│   │   ├── clnt.h
│   │   ├── clnt_bcast.c
│   │   ├── clnt_bsoc.c
│   │   ├── clnt_dg.c
│   │   ├── clnt_generic.c
│   │   ├── clnt_perror.c
│   │   ├── clnt_raw.c
│   │   ├── clnt_simple.c
│   │   ├── clnt_soc.h
│   │   ├── clnt_vc.c
│   │   ├── dbx_rpc.c
│   │   ├── getdname.c
│   │   ├── gethostname.c
│   │   ├── getrpcent.c
│   │   ├── gthostnamadr.c
│   │   ├── key_call.c
│   │   ├── key_prot.c
│   │   ├── key_prot.h
│   │   ├── key_prot.x
│   │   ├── netcvt.h
│   │   ├── netname.c
│   │   ├── netnamer.c
│   │   ├── nettype.h
│   │   ├── openchild.c
│   │   ├── pmap_clnt.c
│   │   ├── pmap_clnt.h
│   │   ├── pmap_prot.c
│   │   ├── pmap_prot.h
│   │   ├── pmap_rmt.h
│   │   ├── port.c
│   │   ├── portsun.c
│   │   ├── rac.c
│   │   ├── rac.h
│   │   ├── rac_private.h
│   │   ├── raw.h
│   │   ├── rpc.h
│   │   ├── rpc_callmsg.c
│   │   ├── rpc_com.h
│   │   ├── rpc_comdata.c
│   │   ├── rpc_generic.c
│   │   ├── rpc_msg.h
│   │   ├── rpc_prot.c
│   │   ├── rpc_soc.c
│   │   ├── rpcb_clnt.c
│   │   ├── rpcb_clnt.h
│   │   ├── rpcb_prot.c
│   │   ├── rpcb_prot.h
│   │   ├── rpcb_prot.x
│   │   ├── rpcdname.c
│   │   ├── rpcent.h
│   │   ├── rtime_tli.c
│   │   ├── svc.c
│   │   ├── svc.h
│   │   ├── svc_auth.c
│   │   ├── svc_auth.h
│   │   ├── svc_auth_sys.c
│   │   ├── svc_dg.c
│   │   ├── svc_generic.c
│   │   ├── svc_raw.c
│   │   ├── svc_run.c
│   │   ├── svc_simple.c
│   │   ├── svc_soc.h
│   │   ├── svc_vc.c
│   │   ├── svcauth_des.c
│   │   ├── svcdesname.c
│   │   ├── syslog.c
│   │   ├── ti_opts.c
│   │   ├── types.h
│   │   ├── xdr.c
│   │   ├── xdr.h
│   │   ├── xdr_array.c
│   │   ├── xdr_float.c
│   │   ├── xdr_mbuf.c
│   │   ├── xdr_mem.c
│   │   ├── xdr_rec.c
│   │   ├── xdr_rec_subr.c
│   │   ├── xdr_refer.c
│   │   ├── xdr_sizeof.c
│   │   └── xdr_stdio.c
│   ├── vers-sparc
│   └── yp-compat
│       ├── Makefile
│       ├── obj
│       ├── obj_g
│       ├── obj_p
│       └── shared
├── tirpcsrc1.0.tar
├── tirpcsrc2.0.tar
├── tirpcsrc2.3.tar
└── uts
    ├── Makefile
    └── common
        ├── Makefile.files
        ├── Makefile.rules
        └── rpc
            ├── Makefile
            ├── auth.h
            ├── auth_des.c
            ├── auth_des.h
            ├── auth_kerb.c
            ├── auth_kerb.h
            ├── auth_kern.c
            ├── auth_sys.h
            ├── auth_unix.h
            ├── authdesprt.c
            ├── authdesubr.c
            ├── authkerbprt.c
            ├── authu_prot.c
            ├── bootparam.h
            ├── bootparam_xdr.c
            ├── clnt.h
            ├── clnt_clts.c
            ├── clnt_gen.c
            ├── clnt_perr.c
            ├── clnt_soc.h
            ├── des_crypt.h
            ├── kerb_krpc.c
            ├── kerb_private.h
            ├── kerb_subr.c
            ├── kerbd_prot.c
            ├── kerbd_prot.h
            ├── key_call.c
            ├── key_prot.c
            ├── key_prot.x
            ├── mount.h
            ├── mt_clntinit.c
            ├── mt_svcinit.c
            ├── nettype.h
            ├── pmap_clnt.h
            ├── pmap_prot.x
            ├── pmap_rmt.h
            ├── rac.h
            ├── raw.h
            ├── rpc.h
            ├── rpc_calmsg.c
            ├── rpc_com.h
            ├── rpc_msg.h
            ├── rpc_prot.c
            ├── rpc_subr.c
            ├── rpcb_clnt.h
            ├── rpcb_prot.c
            ├── rpcb_prot.x
            ├── rpcent.h
            ├── rpcmod.c
            ├── svc.c
            ├── svc.h
            ├── svc_auth.c
            ├── svc_auth.h
            ├── svc_authu.c
            ├── svc_clts.c
            ├── svc_gen.c
            ├── svc_soc.h
            ├── svcauth_kerb.c
            ├── svcauthdes.c
            ├── trace.h
            ├── types.h
            ├── xdr.c
            ├── xdr.h
            ├── xdr_array.c
            ├── xdr_mblk.c
            ├── xdr_mem.c
            └── xdr_refer.c


75 directories, 899 files


tree v2.1.1 © 1996 - 2023 by Steve Baker and Thomas Moore
HTML output hacked and copyleft © 1998 by Francesc Rocher
JSON output hacked and copyleft © 2014 by Florian Sesser
Charsets / OS/2 support © 2001 by Kyosuke Tokoro