summary refs log tree commit diff stats
path: root/plugins/checksum/checksum.c
AgeCommit message (Expand)Author
2013-01-19Correct almost all compiler warning issuesRichardHitt
2013-01-16Remove #include <malloc.h>, causes a #error in freebsd buildRichardHitt
2013-01-10Merge branch 'master' into pull350RichardHitt
2013-01-09Make source cleah with cppcheck, except for mpc and saslRichardHitt
2013-01-09Fix Issue 350 in checksum.c by changing struct stat64 to struct statRichardHitt
2012-11-26update checksum help infoTingPing
2012-11-20Use g_strdupTingPing
2012-11-19Fix checksum plugin when completed dir is setTingPing
2012-11-10Comment out one more unused thingBerke Viktor
2012-10-30Rebranding for the rest of plugin*Berke Viktor
2012-10-30Rebranding for XCHAT_EAT_*Berke Viktor
2012-10-30Rebranding for XCHAT_PRI_*Berke Viktor
2012-10-26Eliminate some more plugin warningsBerke Viktor
2012-10-24A lot more rebrandingBerke Viktor
2012-07-18Checksum Unix support and configure.in cosmeticsBerke Viktor
2012-07-13Remove the last remnants of XChat-WDKBerke Viktor
2012-01-20update the checksum plugin to use the plugin config apiBerke Viktor
2011-12-02don't use hardcoded strings for plugin namesBerke Viktor
2011-11-29relicense own plugins under the MIT licenseBerke Viktor
2011-08-11minor formattingBerke Viktor
2011-02-28add wdk changes to named branchberkeviktor@aol.com
2011-02-24nuke the repoberkeviktor@aol.com
2011-01-13fix erroneous fcloses and add note to self about this errorberkeviktor@aol.com
2011-01-12copy-paste is still BADberkeviktor@aol.com
2011-01-12copy-paste is BADberkeviktor@aol.com
2011-01-12decrease size limit once againberkeviktor@aol.com
2011-01-12use 1024 for buffer size, otherwise it crashes (why?)berkeviktor@aol.com
2011-01-12just to follow conventionsberkeviktor@aol.com
2011-01-12config_fail may have been uninitializedberkeviktor@aol.com
2011-01-12cosmeticsberkeviktor@aol.com
2011-01-12meh, for these tooberkeviktor@aol.com
2011-01-12eh, for this one tooberkeviktor@aol.com
2011-01-12512 should be enough, that's the limit of ntfsberkeviktor@aol.com
2011-01-12hardcoding is badberkeviktor@aol.com
2011-01-12some cosmeticsberkeviktor@aol.com
2011-01-12saner default size limit, human readable printing and some helpberkeviktor@aol.com
2011-01-12even more minor plugin fixesberkeviktor@aol.com
2011-01-12minor plugin fixesberkeviktor@aol.com
2011-01-12rework checksum plugin, add option for limiting file sizeberkeviktor@aol.com
2011-01-02eliminate one layer of abstractionberkeviktor@aol.com
2010-11-14add minimal installation typeberkeviktor@aol.com
2010-10-21remove duplicationberkeviktor@aol.com
2010-10-21insert missing newlineberkeviktor@aol.com
2010-10-21fix some compilation warnings on linuxberkeviktor@aol.com
2010-10-21some cosmeticsberkeviktor@aol.com
2010-10-21send checksum in privmsg, print local sum in the same tabberkeviktor@aol.com
2010-10-20even more formattingberkeviktor@aol.com
2010-10-20some formattingberkeviktor@aol.com
2010-10-20some cosmeticsberkeviktor@aol.com
2010-10-20convert sha256sum to checksum pluginberkeviktor@aol.com
> dwRead = 0; DWORD dwLeft = 0; DWORD dwAvail = 0; time_t start; double timeElapsed; char *token; char *context = NULL; int announce = 0; HANDLE readPipe; HANDLE writePipe; STARTUPINFO sInfo; PROCESS_INFORMATION pInfo; SECURITY_ATTRIBUTES secattr; ZeroMemory (&secattr, sizeof (secattr)); secattr.nLength = sizeof (secattr); secattr.bInheritHandle = TRUE; timeElapsed = 0.0; if (strlen (word[2]) > 0) { strcpy (commandLine, "cmd.exe /c "); if (!stricmp("-O", word[2])) { strcat (commandLine, word_eol[3]); announce = 1; } else { strcat (commandLine, word_eol[2]); } CreatePipe (&readPipe, &writePipe, &secattr, 0); /* might be replaced with MyCreatePipeEx */ ZeroMemory (&sInfo, sizeof (sInfo)); ZeroMemory (&pInfo, sizeof (pInfo)); sInfo.cb = sizeof (sInfo); sInfo.dwFlags = STARTF_USESTDHANDLES; sInfo.hStdInput = NULL; sInfo.hStdOutput = writePipe; sInfo.hStdError = writePipe; CreateProcess (0, commandLine, 0, 0, TRUE, NORMAL_PRIORITY_CLASS | CREATE_NO_WINDOW, 0, 0, &sInfo, &pInfo); CloseHandle (writePipe); start = time (0); while (PeekNamedPipe (readPipe, buffer, 1, &dwRead, &dwAvail, &dwLeft) && timeElapsed < 10) { if (dwRead) { if (ReadFile (readPipe, buffer, sizeof (buffer) - 1, &dwRead, NULL) && dwRead != 0 ) { /* avoid garbage */ buffer[dwRead] = '\0'; if (announce) { /* Say each line seperately, TODO: improve... */ token = strtok_s (buffer, "\n", &context); while (token != NULL) { hexchat_commandf (ph, "SAY %s", token); token = strtok_s (NULL, "\n", &context); } } else hexchat_printf (ph, "%s", buffer); } } else { /* this way we'll more likely get full lines */ SleepEx (100, TRUE); } timeElapsed = difftime (time (0), start); } /* display a newline to separate things */ if (!announce) hexchat_printf (ph, "\n"); if (timeElapsed >= 10) { hexchat_printf (ph, "Command took too much time to run, execution aborted.\n"); } CloseHandle (readPipe); CloseHandle (pInfo.hProcess); CloseHandle (pInfo.hThread); } else { hexchat_command (ph, "help exec"); } return HEXCHAT_EAT_HEXCHAT; } int hexchat_plugin_init (hexchat_plugin *plugin_handle, char **plugin_name, char **plugin_desc, char **plugin_version, char *arg) { ph = plugin_handle; *plugin_name = name; *plugin_desc = desc; *plugin_version = version; hexchat_hook_command (ph, "EXEC", HEXCHAT_PRI_NORM, run_command, "Usage: /EXEC [-O] - execute commands inside HexChat", 0); hexchat_printf (ph, "%s plugin loaded\n", name); return 1; /* return 1 for success */ } int hexchat_plugin_deinit (void) { hexchat_printf (ph, "%s plugin unloaded\n", name); return 1; }