NTP_OFFSET

Difference between the Y2K and the NTP epochs, in seconds. To convert a Y2K timestamp to NTP...
        unsigned long ntp;
        time_t y2k;

        y2k = time(NULL);
        ntp = y2k + NTP_OFFSET;