summaryrefslogtreecommitdiff
path: root/src/tet3/xtilib/tccdaddr.c
blob: 562eddb03b629ff9a5b66ffdd09e7f840879db6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
 *      SCCS:  @(#)tccdaddr.c	1.8 (98/09/01) 
 *
 *	UniSoft Ltd., London, England
 *
 * (C) Copyright 1993 X/Open Company Limited
 *
 * All rights reserved.  No part of this source code may be reproduced,
 * stored in a retrieval system, or transmitted, in any form or by any
 * means, electronic, mechanical, photocopying, recording or otherwise,
 * except as stated in the end-user licence agreement, without the prior
 * permission of the copyright owners.
 *
 * X/Open and the 'X' symbol are trademarks of X/Open Company Limited in
 * the UK and other countries.
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

/************************************************************************

SCCS:   	@(#)tccdaddr.c	1.8 98/09/01 TETware release 3.3
NAME:		tccdaddr.c
PRODUCT:	TETware
AUTHOR:		Denis McConalogue, UniSoft Ltd.
DATE CREATED:	April 1993

DESCRIPTION:

	function to determine tccd XTI address

MODIFICATIONS:
	Andrew Dingwall, UniSoft Ltd., December 1993
	added malloc tracing

	Andrew Dingwall, UniSoft Ltd., July 1998
	Added support for shared API libraries.

	Aaron Plattner, April 2010
	Fixed warnings when compiled with GCC's -Wall option.

************************************************************************/

#include <stdlib.h>
#include <string.h>
#include <xti.h>
#include <errno.h>
#include <sys/types.h>
#include "dtmac.h"
#include "dtmsg.h"
#include "ptab.h"
#include "tptab_xt.h"
#include "sysent.h"
#include "error.h"
#include "ltoa.h"
#include "xtilib_xt.h"

/*
**	tet_gettccdaddr() - look up the XTI address for a TCCD
**		and store it in the related tptab entry
**
**	return 0 if successful or -1 on error
*/

TET_IMPORT int tet_gettccdaddr(pp)
struct ptab *pp;
{
	register struct sysent *sp;
	register struct netbuf *np;
	register struct tptab *tp = (struct tptab *) pp->pt_tdata;

	/* look up the host name in the systems file */
	errno = 0;
	if ((sp = tet_libgetsysbyid(pp->ptr_sysid)) == (struct sysent *) 0) {
		error(errno, "can't get systems file entry for sysid",
			tet_i2a(pp->ptr_sysid));
		return(-1);
	}

	if ((np = tet_lname2addr(sp->sy_tccd)) == (struct netbuf *)0) {
		error(0, "can't convert STCC address for host", sp->sy_name);
		return (-1);
	}

	errno = 0;
	if ((tp->tp_call.buf = (char *)malloc((size_t)np->maxlen)) == (char *)0) {
		error(errno, "can't malloc STCC address buffer", (char *)0);
		return (-1);
	}
	TRACE2(tet_Tbuf, 6, "allocate STCC address buffer = %s",
		tet_i2x(tp->tp_call.buf));

	/* all ok so fill in the address details */
	tp->tp_call.maxlen	= np->maxlen;
	tp->tp_call.len		= np->len;
	(void) memcpy(tp->tp_call.buf, np->buf, (size_t)np->len);

	return(0);
}