Home | History | Annotate | Download | only in pending

Lines Matching refs:expires

30   uint32_t expires;
46 xprintf("Mac Address IP Address Host Name Expires %s\n", (toys.optflags & FLAG_a) ? "at" : "in");
59 exp = ntohl(lease_struct.expires) + written_time;
66 unsigned expires = exp - current_time;
67 dt = expires / (24*60*60); expires %= (24*60*60);
68 hr = expires / (60*60); expires %= (60*60);
69 m = expires / 60; expires %= 60;
71 xprintf("%02u:%02u:%02u\n", hr, m, (unsigned)expires);