mirror of
https://github.com/znc/znc.git
synced 2026-08-07 09:22:55 +02:00
Renamed md5.cpp/h to MD5.cpp/h
git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@468 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
+1
-1
@@ -21,7 +21,7 @@
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "md5.h"
|
||||
#include "MD5.h"
|
||||
|
||||
CMD5::CMD5()
|
||||
{
|
||||
+3
-3
@@ -1,11 +1,11 @@
|
||||
/* C implementation by Christophe Devine, C++ "class-ified" by [T3] */
|
||||
|
||||
#include <string>
|
||||
using std::string;
|
||||
|
||||
#ifndef _MD5_H
|
||||
#define _MD5_H
|
||||
|
||||
#include <string>
|
||||
using std::string;
|
||||
|
||||
#ifndef uint8
|
||||
#define uint8 unsigned char
|
||||
#endif
|
||||
+2
-2
@@ -4,8 +4,8 @@ INCLUDES=@INCLUDES@
|
||||
LIBS=@LIBS@
|
||||
prefix=@prefix@
|
||||
|
||||
OBJS=String.o Csocket.o main.o znc.o User.o IRCSock.o UserSock.o DCCBounce.o DCCSock.o Chan.o Nick.o Server.o Modules.o md5.o Buffer.o Utils.o FileUtils.o HTTPSock.o
|
||||
SRCS=String.cpp Csocket.cpp main.cpp znc.cpp User.cpp IRCSock.cpp UserSock.cpp DCCBounce.cpp DCCSock.cpp Chan.cpp Nick.cpp Server.cpp Modules.cpp md5.cpp Buffer.cpp Utils.cpp FileUtils.cpp HTTPSock.cpp
|
||||
OBJS=String.o Csocket.o main.o znc.o User.o IRCSock.o UserSock.o DCCBounce.o DCCSock.o Chan.o Nick.o Server.o Modules.o MD5.o Buffer.o Utils.o FileUtils.o HTTPSock.o
|
||||
SRCS=String.cpp Csocket.cpp main.cpp znc.cpp User.cpp IRCSock.cpp UserSock.cpp DCCBounce.cpp DCCSock.cpp Chan.cpp Nick.cpp Server.cpp Modules.cpp MD5.cpp Buffer.cpp Utils.cpp FileUtils.cpp HTTPSock.cpp
|
||||
|
||||
all: znc @MODTARGET@
|
||||
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
#include <string.h>
|
||||
#include "String.h"
|
||||
#include "FileUtils.h"
|
||||
#include "md5.h"
|
||||
#include "MD5.h"
|
||||
|
||||
const char* g_szHTMLescapes[256] = {
|
||||
"�", 0, 0, 0, 0, 0, 0, 0, 0, 0, // 0-9
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
#include "UserSock.h"
|
||||
#include "DCCBounce.h"
|
||||
#include "DCCSock.h"
|
||||
#include "md5.h"
|
||||
#include "MD5.h"
|
||||
#include "Timers.h"
|
||||
|
||||
CUser::CUser(const CString& sUserName, CZNC* pZNC) {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#include "Utils.h"
|
||||
#include "md5.h"
|
||||
#include "MD5.h"
|
||||
#include <sys/stat.h>
|
||||
#include <unistd.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include <signal.h>
|
||||
#include "znc.h"
|
||||
#include "Modules.h"
|
||||
#include "md5.h"
|
||||
#include "MD5.h"
|
||||
|
||||
static struct option g_LongOpts[] = {
|
||||
{ "help", 0, NULL, 0 },
|
||||
|
||||
+4
-1
@@ -5,7 +5,7 @@
|
||||
#include "Chan.h"
|
||||
#include "Utils.h"
|
||||
#include "FileUtils.h"
|
||||
#include "md5.h"
|
||||
#include "MD5.h"
|
||||
#include <pwd.h>
|
||||
#include <sstream>
|
||||
|
||||
@@ -15,6 +15,9 @@
|
||||
* Author: imaginos <imaginos@imaginos.net>
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.9 2005/09/07 05:14:28 prozacx
|
||||
* Renamed md5.cpp/h to MD5.cpp/h
|
||||
*
|
||||
* Revision 1.8 2005/05/26 20:42:13 prozacx
|
||||
* Moved GetDescription() into second argument of MODULEDEFS()
|
||||
*
|
||||
|
||||
+4
-1
@@ -9,7 +9,7 @@
|
||||
#include "String.h"
|
||||
#include "FileUtils.h"
|
||||
#include "Csocket.h"
|
||||
#include "md5.h"
|
||||
#include "MD5.h"
|
||||
#include <pwd.h>
|
||||
#include <sstream>
|
||||
|
||||
@@ -20,6 +20,9 @@ using std::pair;
|
||||
* Author: imaginos <imaginos@imaginos.net>
|
||||
*
|
||||
* $Log$
|
||||
* Revision 1.17 2005/09/07 05:14:28 prozacx
|
||||
* Renamed md5.cpp/h to MD5.cpp/h
|
||||
*
|
||||
* Revision 1.16 2005/09/06 22:43:02 prozacx
|
||||
* Added REQUIRESSL
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user