4 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
5 * Copyright (c) 1996,1999 by Internet Software Consortium.
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
17 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 static const char rcsid
[] = "Id: ns_ttl.c,v 1.4 2005/07/28 06:51:49 marka Exp";
26 #include "port_before.h"
28 #include <arpa/nameser.h>
35 #include "port_after.h"
38 # define SPRINTF(x) strlen(sprintf/**/x)
40 # define SPRINTF(x) ((size_t)sprintf x)
45 static int fmt1(int t
, char s
, char **buf
, size_t *buflen
);
49 #define T(x) if ((x) < 0) return (-1); else (void)NULL
54 ns_format_ttl(u_long src
, char *dst
, size_t dstlen
) {
56 int secs
, mins
, hours
, days
, weeks
, x
;
59 secs
= src
% 60; src
/= 60;
60 mins
= src
% 60; src
/= 60;
61 hours
= src
% 24; src
/= 24;
62 days
= src
% 7; src
/= 7;
67 T(fmt1(weeks
, 'W', &dst
, &dstlen
));
71 T(fmt1(days
, 'D', &dst
, &dstlen
));
75 T(fmt1(hours
, 'H', &dst
, &dstlen
));
79 T(fmt1(mins
, 'M', &dst
, &dstlen
));
82 if (secs
|| !(weeks
|| days
|| hours
|| mins
)) {
83 T(fmt1(secs
, 'S', &dst
, &dstlen
));
90 for (p
= odst
; (ch
= *p
) != '\0'; p
++)
91 if (isascii(ch
) && isupper(ch
))
99 ns_parse_ttl(const char *src
, u_long
*dst
) {
101 int ch
, digits
, dirty
;
107 while ((ch
= *src
++) != '\0') {
108 if (!isascii(ch
) || !isprint(ch
))
126 default: goto einval
;
151 fmt1(int t
, char s
, char **buf
, size_t *buflen
) {
155 len
= SPRINTF((tmp
, "%d%c", t
, s
));
156 if (len
+ 1 > *buflen
)