Some doc path fixes from Anders
[pkg-k5-afs_openafs.git] / src / bucoord / server.c
blobeeead8333f6f6d517ee961c94563554fd14e5ee0
1 /*
2 * Copyright 2000, International Business Machines Corporation and others.
3 * All Rights Reserved.
5 * This software has been released under the terms of the IBM Public
6 * License. For details, see the LICENSE file in the top-level source
7 * directory or online at http://www.openafs.org/dl/license10.html
8 */
10 #include <afsconfig.h>
11 #include <afs/param.h>
13 #include <roken.h>
15 #include <rx/rx.h>
17 /* services available on incoming message port */
18 int
19 SBC_Print(struct rx_call *acall, afs_int32 acode, afs_int32 aflags,
20 char *amessage)
22 struct rx_connection *tconn;
23 struct rx_peer *tpeer;
25 tconn = rx_ConnectionOf(acall);
26 tpeer = rx_PeerOf(tconn);
27 printf("From %08x: %s <%d>\n", rx_HostOf(tpeer), amessage, acode);
28 return 0;