Difference between revisions of "User:SignpostMarv Martin/LSL/SL NTPoHTTP v1.1 client"

From Second Life Wiki
Jump to navigation Jump to search
m (Add tags to show entry in TOC)
m (<lsl> tag to <source>)
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{LSL Header}}
{{LSL Header}}
== NTP over HTTP v1.1 ==
<source lang="lsl2">
<code><pre><nowiki>key http_id;
key http_id;
string timezone = "America/Los_Angeles"; // See http://uk.php.net/manual/en/timezones.php  
string timezone = "America/Los_Angeles"; // See http://uk.php.net/manual/en/timezones.php  
                                         // for full list of supported timezones.
                                         // for full list of supported timezones.
Line 20: Line 20:
         }
         }
     }
     }
}</nowiki></pre></code>
}
</source>


[[Category:LSL Library|{{SUBPAGENAME}}]]
 
{{LSLC|Library}}{{LSLC|Examples}}
{{LSLC|Library|SLNTP over HTTP}}
{{#vardefine:sort|NTP over HTTP v1.1}}
{{LSLC|Examples|SLNTP over HTTP}}

Latest revision as of 18:03, 24 January 2015

key http_id;
string timezone = "America/Los_Angeles"; // See http://uk.php.net/manual/en/timezones.php 
                                         // for full list of supported timezones.
string format = "llGetWallClock"; // "llGetWallClock", "RFC 2822" and "ISO 8601" 
                                  // are the supported formats.
default
{
    state_entry()
    {
        http_id = llHTTPRequest("http://services.slopenid.net/SLNTPoHTTP/" + llEscapeURL(format) + "/" 
+ (string)llGetUnixTime() + "/" + timezone + "/",[],"");
    }
    http_response(key q,integer s,list m,string r)
    {
        if(q == http_id)
        {
            llOwnerSay(r);
        }
    }
}