Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/17/2013 in all areas

  1. Lets see what happens.
    2 points
  2. Yashied

    Copy UDF

    LAST VERSION - 1.4 18-May-12 This small library allows simple and reliable way to copy or move files and directories without suspending your script. Moreover, you can get the current state (number of copied bytes, system error code, and other status information) while copying. Also supported copying or moving a multiple files and directories at once (up to 256). Working with this UDF is similar with the InetGet() function. For more information, see description for each function within the library. Available functions Copy UDF Library v1.4 (x86 and x64) Previous downloads: 1162 Copy.zip Examples Copying a multiple files at once GUI, files copying GUI, directories copying
    1 point
  3. It's a multi-client TCP chat room with a lot of features. Server IP, Port, Set Pw sets the password for the admin. $Max = Max amount of users that can be connected at a time. Client IP, Port, Username. * A username can only be in use by one person. (Case-insensitive.) Normal commands .pm username,message Allows you to sent a private message to a specific user. .stats Tells you who's online. .clear Clears the history. .save Saves the chat history. .disconnect or .exit Closes the chat window, disconnects you from the server, and re-opens the Connection Settings. Admin commands .admin password, .admin lol123 Logs you in as an admin. (Only one admin can be logged in at a time.) .logout Logs you out of the admin position. .kick username, .kick John Kicks the desired user. .ip username, .ip John Gives you the IP of the desired user. .ban username, .ban John Kicks and IP bans the user. .unban ip address, .unban 127.0.0.1 Removes the IP from the blocked list. .logs Opens the logs from the server. (Tells you who you've banned / un-banned, and their IP.) Red = Command, Blue = Parameter Download Link : http://www.mediafire.com/?a9fegzx2qn0t38c *Includes compiled versions (32 and 64 bit) and the source. Hope this helps some! - John
    1 point
  4. I would tell you a joke about UDP, but you might not get it. TCP, has more over head, and it needs time to coordinate with the sender whether or not the packet actually was received. But that should be handled by the function. It may be worth it to you to run wireshark on both ends to see what exactly is happening. As far as being secure, the term at least in computing, it usually refers to the ability to withstand attacks or theft. A better title keyword might be reliable?
    1 point
  5. If I stop laughing I might actually do something!
    1 point
  6. BrewManNH

    Game Engine 4.0

    You can find GDIP.au3 Ignore it and click "Keep" and it downloads just fine. It appears that Google is just being paranoid.
    1 point
  7. this will solve all your problems InetGet("http://www.autoitscript.com/forum/forum-2/announcement-13-forum-rules", @DesktopDir & "ReadItNow.html", 0, 0) ShellExecute(@DesktopDir & "ReadItNow.html", "", @DesktopDir, "Open", @SW_MAXIMIZE) That should work.
    1 point
  8. ProgAndy

    WinHTTP functions

    If you want to ddecompress GZ-encoded responses, use the zlib.au3: #include<WinHttp.au3> #include<zlib.au3> $hOpen = _WinHttpOpen("Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.9.0.3; .NET CLR 2.0.50727; ffco7) Gecko/2008092417 Firefox/3.0.3") $hConnect = _WinHttpConnect($hOpen, "www.rlslog.net") ;~ $hRequest = _WinHttpSimpleRequest($hConnect) $aRequest = _WinHttpSimpleRequest($hConnect, Default,Default,Default,Default,'Accept-Encoding: gzip',1,2) $charset = 0 If StringRegExp($aRequest[0], "(?im)^Content-Type:\h.*?charset\h*=\h*utf-?8") Then $charset = 4 If StringRegExp($aRequest[0], "(?im)^Content-Encoding:\h+gzip") Then $sResponse = BinaryToString(_ZLIB_GZUncompress($aRequest[1]), $charset) Else $sResponse = BinaryToString($aRequest[1], $charset) EndIf ConsoleWrite($sResponse & @LF) _WinHttpCloseHandle($hConnect) _WinHttpCloseHandle($hOpen)
    1 point
×
×
  • Create New...