2 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
3 * Copyright (c) 1996,1999 by Internet Software Consortium.
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
10 * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
11 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
12 * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
13 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
14 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
15 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
19 #if !defined(_LIBC) && !defined(lint)
20 static const char rcsid
[] = "$BINDId: ns_ttl.c,v 8.8 1999/10/13 16:39:36 vixie Exp $";
25 #include <arpa/nameser.h>
33 # define SPRINTF(x) strlen(sprintf/**/x)
35 # define SPRINTF(x) ((size_t)sprintf x)
40 static int fmt1(int t
, char s
, char **buf
, size_t *buflen
);
44 #define T(x) if ((x) < 0) return (-1); else (void)NULL
49 ns_format_ttl(u_long src
, char *dst
, size_t dstlen
) {
51 int secs
, mins
, hours
, days
, weeks
, x
;
54 secs
= src
% 60; src
/= 60;
55 mins
= src
% 60; src
/= 60;
56 hours
= src
% 24; src
/= 24;
57 days
= src
% 7; src
/= 7;
62 T(fmt1(weeks
, 'W', &dst
, &dstlen
));
66 T(fmt1(days
, 'D', &dst
, &dstlen
));
70 T(fmt1(hours
, 'H', &dst
, &dstlen
));
74 T(fmt1(mins
, 'M', &dst
, &dstlen
));
77 if (secs
|| !(weeks
|| days
|| hours
|| mins
)) {
78 T(fmt1(secs
, 'S', &dst
, &dstlen
));
85 for (p
= odst
; (ch
= *p
) != '\0'; p
++)
86 if (isascii(ch
) && isupper(ch
))
92 libresolv_hidden_def (ns_format_ttl
)
94 // Seems not to be needed. It's not exported from the DSO. Some libresolv.a
95 // might depend on it so we let it in.
97 ns_parse_ttl(const char *src
, u_long
*dst
) {
99 int ch
, digits
, dirty
;
105 while ((ch
= *src
++) != '\0') {
106 if (!isascii(ch
) || !isprint(ch
))
124 default: goto einval
;
142 __set_errno (EINVAL
);
149 fmt1(int t
, char s
, char **buf
, size_t *buflen
) {
153 len
= SPRINTF((tmp
, "%d%c", t
, s
));
154 if (len
+ 1 > *buflen
)