|
if (Amateur Telescope Making)
{ |
|
ATM() |
|
} |
|
else if(Star Party)
{ |
|
STARS() |
|
} |
|
else if(About The Doctor)
{ |
|
WhoIs() |
|
} |
|
//Begin Program
//
//See who is looking at us
CALL DisassembleUser();
FUNCTION DisassembleUser()
{
//What web browser is hitting us
set $UsersBrowser=CCBot/2.0 (https://commoncrawl.org/faq/)
//Where is the user coming from
set $UsersIPaddress=3.237.15.145
//What is there TCP port that they are connecting to us with
set $UserTCPport=37820
}
END FUNCTION
-->
|