HTTP Time Protocol 1.0.4 (KIS branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News HTTP Time Protocol 1.0.4 (KIS branch)
# 1  
Old 10-14-2008
HTTP Time Protocol 1.0.4 (KIS branch)

Image HTTP Time Protocol is a time synchronization tool that uses Web server responses (HTTP headers) instead of the NTP protocol. If you are behind a corporate firewall, NAT device, or proxy server, HTP will still be able to synchronize the time. For high precision time synchronization, use ntpd. License: GNU General Public License (GPL) Changes:
A memory issue has been fixed. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk script to find time difference between HTTP PUT and HTTP DELETE requests in access.log

Hi, I'm trying to write a script to determine the time gap between HTTP PUT and HTTP DELETE requests in the HTTP Servers access log. Normally client will do HTTP PUT to push content e.g. file_1.txt and 21 seconds later it will do HTTP DELETE, but sometimes the time varies causing some issues... (3 Replies)
Discussion started by: Juha
3 Replies

2. Solaris

HTTP Protocol Version

Friends/Gurus Can anybody let me know how to check Http Protocol version in Solaris and in AIX? Thanks (1 Reply)
Discussion started by: efunds
1 Replies

3. OS X (Apple)

change network time protocol

by default, a mac syncs its time and date with time.apple.com (located system prefs->Date&Time). Is there a way in unix to change it to another address? my attempts to use ntpdate and ntpd have failed. (4 Replies)
Discussion started by: CBarraford
4 Replies

4. UNIX for Advanced & Expert Users

http protocol from UNIX

Is there any way to access http page from UNIX command line.... eg: http://www.abc.xyz (5 Replies)
Discussion started by: bishweshwar
5 Replies

5. IP Networking

RH 9 and Network Time Protocol

I have a small program written in C using winsock v1, that uses a unix host to get the time. I have two machines networked, one windows, the other red hat 9. The windows machine will request the time off the RH one. How can I configure red hat to reply to the time request, i.e act as an... (1 Reply)
Discussion started by: jaredGalen
1 Replies
Login or Register to Ask a Question
Atompub(3pm)						User Contributed Perl Documentation					      Atompub(3pm)

NAME
Atompub - Atom Publishing Protocol implementation DESCRIPTION
The Atom Publishing Protocol (Atompub) is a protocol for publishing and editing Web resources described at <http://www.ietf.org/rfc/rfc5023.txt>. Atompub implements client Atompub::Client and server Atompub::Server for the protocol. XML formats used in the protocol are implemented in XML::Atom and XML::Atom::Service. Catalyst extension Catalyst::Controller::Atompub is also available. This module was tested in July2007InteropTokyo and November2007Interop, and interoperated with other implementations. See <http://intertwingly.net/wiki/pie/July2007InteropTokyo> and <http://www.intertwingly.net/wiki/pie/November2007Interop> in detail. METHODS of HTTP::Headers, HTTP::Request, and HTTP::Response Some accessors for the HTTP header fields, which are used in the Atom Publishing Protocol, are imported into HTTP::Headers, HTTP::Request, and HTTP::Response. See <http://www.ietf.org/rfc/rfc2616.txt> in detail. $headers->accept([ $value ]) An accessor for the Accept header field. This method is imported into HTTP::Headers and HTTP::Request. $headers->if_match([ $value ]) An accessor for the If-Match header field. This method is imported into HTTP::Headers and HTTP::Request. $headers->if_none_match([ $value ]) An accessor for the If-None-Match header field. This method is imported into HTTP::Headers and HTTP::Request. $headers->if_modified_since([ $value ]) An accessor for the If-Modified-Since header field. $value MUST be UTC epoch value, like 1167609600. This method is imported into HTTP::Headers and HTTP::Request. $headers->if_unmodified_since([ $value ]) An accessor for the If-Unmodified-Since header field. $value MUST be UTC epoch value, like 1167609600. This method is imported into HTTP::Headers and HTTP::Request. $headers->content_location([ $value ]) An accessor for the Content-Location header field. This method is imported into HTTP::Headers and HTTP::Response. $headers->etag([ $value ]) An accessor for the ETag header field. This method is imported into HTTP::Headers and HTTP::Response. $headers->location([ $value ]) An accessor for the Location header field. This method is imported into HTTP::Headers and HTTP::Response. $headers->last_modified([ $value ]) An accessor for the Last-Modified header field. This method is imported into HTTP::Headers, HTTP::Request, and HTTP::Response. $headers->slug([ $value ]) An accessor for the Slug header field. This method is imported into HTTP::Headers, HTTP::Request, and HTTP::Response. AUTHOR
Takeru INOUE, <takeru.inoue _ gmail.com> LICENCE AND COPYRIGHT
Copyright (c) 2007, Takeru INOUE "<takeru.inoue _ gmail.com>". This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic. DISCLAIMER OF WARRANTY
BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. perl v5.14.2 2012-04-06 Atompub(3pm)