Deleted Added
full compact
svc_simple.c (74462) svc_simple.c (75094)
1/* $NetBSD: svc_simple.c,v 1.20 2000/07/06 03:10:35 christos Exp $ */
1/* $NetBSD: svc_simple.c,v 1.20 2000/07/06 03:10:35 christos Exp $ */
2/* $FreeBSD: head/lib/libc/rpc/svc_simple.c 74462 2001-03-19 12:50:13Z alfred $ */
2/* $FreeBSD: head/lib/libc/rpc/svc_simple.c 75094 2001-04-02 21:41:44Z iedowse $ */
3
4/*
5 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
6 * unrestricted use provided that this legend is included on all tape
7 * media and as a part of the software program in whole or part. Users
8 * may copy or modify Sun RPC without charge, but are not authorized
9 * to license or distribute it to anyone else except as part of a product or
10 * program developed by the user.

--- 31 unchanged lines hidden (view full) ---

42
43/*
44 * This interface creates a virtual listener for all the services
45 * started thru rpc_reg(). It listens on the same endpoint for
46 * all the services and then executes the corresponding service
47 * for the given prognum and procnum.
48 */
49
3
4/*
5 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
6 * unrestricted use provided that this legend is included on all tape
7 * media and as a part of the software program in whole or part. Users
8 * may copy or modify Sun RPC without charge, but are not authorized
9 * to license or distribute it to anyone else except as part of a product or
10 * program developed by the user.

--- 31 unchanged lines hidden (view full) ---

42
43/*
44 * This interface creates a virtual listener for all the services
45 * started thru rpc_reg(). It listens on the same endpoint for
46 * all the services and then executes the corresponding service
47 * for the given prognum and procnum.
48 */
49
50#include "reentrant.h"
51#include "namespace.h"
50#include "namespace.h"
51#include "reentrant.h"
52#include <sys/types.h>
53#include <rpc/rpc.h>
54#include <rpc/nettype.h>
55#include <stdio.h>
56#include <stdlib.h>
57#include <string.h>
58#include <err.h>
59#include "un-namespace.h"

--- 248 unchanged lines hidden ---
52#include <sys/types.h>
53#include <rpc/rpc.h>
54#include <rpc/nettype.h>
55#include <stdio.h>
56#include <stdlib.h>
57#include <string.h>
58#include <err.h>
59#include "un-namespace.h"

--- 248 unchanged lines hidden ---