blob: ace66704975360cbfd2aae4b900d4a438e31f12b (
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
|
/* pe2ssdu.c - write a PE to a SSDU */
#ifndef lint
static char *rcsid = "$Header$";
#endif
/*
* $Header$
*
*
* $Log$
* Revision 1.1 1994/06/10 03:33:13 eichin
* autoconfed isode for kerberos work
*
* Revision 1.1 1994/06/01 00:37:36 eichin
* add psap too
*
* Revision 8.0 91/07/17 12:46:55 isode
* Release 7.0
*
*
*/
/*
* NOTICE
*
* Acquisition, use, and distribution of this module and related
* materials are subject to the restrictions of a license agreement.
* Consult the Preface in the User's Manual for the full terms of
* this agreement.
*
*/
/* LINTLIBRARY */
#include <stdio.h>
#include "psap.h"
#include "tailor.h"
/* */
int pe2ssdu (pe, base, len)
register PE pe;
char **base;
int *len;
{
register int plen, ret;
*len = 0;
plen = ps_get_abs (pe);
Qcp = (char *)malloc((unsigned)plen);
*base = Qcp;
if (Qcp == NULL)
return NOTOK;
Len = 0;
Ecp = Qcp + plen;
if ((ret = pe2qb_f(pe)) != plen) {
(void) printf("pe2ssdu: bad length returned %d should be %d\n",
ret, plen);
return NOTOK;
}
*len = plen;
#ifdef DEBUG
if (psap_log -> ll_events & LLOG_PDUS)
pe2text (psap_log, pe, 0, *len);
#endif
return OK;
}
|