Skip to content

Commit 3998a1f

Browse files
committedFeb 21, 2015
Move sha1.hpp and base64.hpp to util/
1 parent aa31e3c commit 3998a1f

11 files changed

+9
-9
lines changed
 

‎src/CMakeLists.txt

-2
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,6 @@ set (unittests_SRCS
362362

363363
set(common_SRCS
364364
ban.cpp
365-
base64.cpp
366365
cavegen.cpp
367366
clientiface.cpp
368367
collision.cpp
@@ -422,7 +421,6 @@ set(common_SRCS
422421
serverlist.cpp
423422
serverobject.cpp
424423
settings.cpp
425-
sha1.cpp
426424
socket.cpp
427425
sound.cpp
428426
staticobject.cpp

‎src/clientmedia.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ with this program; if not, write to the Free Software Foundation, Inc.,
1919

2020
#include "clientmedia.h"
2121
#include "util/serialize.h"
22+
#include "util/sha1.h"
2223
#include "util/string.h"
2324
#include "httpfetch.h"
2425
#include "client.h"
2526
#include "network/networkprotocol.h"
2627
#include "filecache.h"
2728
#include "filesys.h"
2829
#include "hex.h"
29-
#include "sha1.h"
3030
#include "debug.h"
3131
#include "log.h"
3232
#include "porting.h"

‎src/network/packethandlers/client.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
1919

2020
#include "client.h"
2121

22-
#include "base64.h"
22+
#include "util/base64.h"
2323
#include "clientmedia.h"
2424
#include "log.h"
2525
#include "map.h"

‎src/network/packethandlers/server.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ with this program; if not, write to the Free Software Foundation, Inc.,
2020
#include "server.h"
2121
#include "log.h"
2222

23-
#include "base64.h"
2423
#include "content_abm.h"
2524
#include "content_sao.h"
2625
#include "emerge.h"
@@ -34,6 +33,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
3433
#include "version.h"
3534
#include "network/networkprotocol.h"
3635
#include "network/serveropcodes.h"
36+
#include "util/base64.h"
3737
#include "util/pointedthing.h"
3838
#include "util/serialize.h"
3939

‎src/server.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
5151
#include "content_abm.h"
5252
#include "content_sao.h"
5353
#include "mods.h"
54-
#include "sha1.h"
55-
#include "base64.h"
54+
#include "util/sha1.h"
55+
#include "util/base64.h"
5656
#include "sound.h" // dummySoundManager
5757
#include "event_manager.h"
5858
#include "hex.h"

‎src/util/CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
set(UTIL_SRCS
2+
${CMAKE_CURRENT_SOURCE_DIR}/base64.cpp
23
${CMAKE_CURRENT_SOURCE_DIR}/directiontables.cpp
34
${CMAKE_CURRENT_SOURCE_DIR}/numeric.cpp
45
${CMAKE_CURRENT_SOURCE_DIR}/pointedthing.cpp
56
${CMAKE_CURRENT_SOURCE_DIR}/serialize.cpp
7+
${CMAKE_CURRENT_SOURCE_DIR}/sha1.cpp
68
${CMAKE_CURRENT_SOURCE_DIR}/string.cpp
79
${CMAKE_CURRENT_SOURCE_DIR}/timetaker.cpp
810
PARENT_SCOPE)

‎src/base64.cpp ‎src/util/base64.cpp

File renamed without changes.

‎src/base64.h ‎src/util/base64.h

File renamed without changes.

‎src/sha1.cpp ‎src/util/sha1.cpp

File renamed without changes.

‎src/sha1.h ‎src/util/sha1.h

File renamed without changes.

‎src/util/string.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
2222
#include "numeric.h"
2323
#include "log.h"
2424

25-
#include "../sha1.h"
26-
#include "../base64.h"
25+
#include "sha1.h"
26+
#include "base64.h"
2727
#include "../hex.h"
2828
#include "../porting.h"
2929

0 commit comments

Comments
 (0)
Please sign in to comment.