Skip to content

Commit

Permalink
Rename files according to Xrootd project naming scheme.
Browse files Browse the repository at this point in the history
  • Loading branch information
bbockelm committed Jun 8, 2018
1 parent c4153bc commit 5c1181b
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 74 deletions.
11 changes: 6 additions & 5 deletions src/XrdTpc.cmake
Expand Up @@ -18,11 +18,12 @@ if( BUILD_TPC )
add_library(
${LIB_XRD_TPC}
MODULE
XrdTpc/configure.cpp
XrdTpc/multistream.cpp
XrdTpc/state.cpp XrdTpc/state.hh
XrdTpc/stream.cpp XrdTpc/stream.hh
XrdTpc/tpc.cpp XrdTpc/tpc.hh)
XrdTpc/XrdTpcConfigure.cc
XrdTpc/XrdTpcMultistream.cc
XrdTpc/XrdTpcCurlMulti.cc XrdTpc/XrdTpcCurlMulti.hh
XrdTpc/XrdTpcState.cc XrdTpc/XrdTpcState.hh
XrdTpc/XrdTpcStream.cc XrdTpc/XrdTpcStream.hh
XrdTpc/XrdTpcTPC.cc XrdTpc/XrdTpcTPC.hh)

target_link_libraries(
${LIB_XRD_TPC}
Expand Down
59 changes: 0 additions & 59 deletions src/XrdTpc/CMakeLists.txt

This file was deleted.

2 changes: 1 addition & 1 deletion src/XrdTpc/configure.cpp → src/XrdTpc/XrdTpcConfigure.cc
@@ -1,5 +1,5 @@

#include "tpc.hh"
#include "XrdTpcTPC.hh"

#include <dlfcn.h>
#include <fcntl.h>
Expand Down
@@ -1,10 +1,10 @@

#include "XrdTpcCurlMulti.hh"

#include <errno.h>
#include <sys/select.h>

#ifndef HAS_CURL_MULTI
static
CURLMcode curl_multi_wait_impl(CURLM *multi_handle, int timeout_ms, int *numfds) {
int max_fds;
fd_set read_fd_set[FD_SETSIZE];
Expand Down
Expand Up @@ -4,8 +4,8 @@

#ifdef XRD_CHUNK_RESP

#include "tpc.hh"
#include "state.hh"
#include "XrdTpcTPC.hh"
#include "XrdTpcState.hh"
#include "XrdTpcCurlMulti.hh"

#include "XrdSys/XrdSysError.hh"
Expand Down
4 changes: 2 additions & 2 deletions src/XrdTpc/state.cpp → src/XrdTpc/XrdTpcState.cc
Expand Up @@ -9,8 +9,8 @@

#include <curl/curl.h>

#include "state.hh"
#include "stream.hh"
#include "XrdTpcState.hh"
#include "XrdTpcStream.hh"

using namespace TPC;

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/XrdTpc/stream.cpp → src/XrdTpc/XrdTpcStream.cc
@@ -1,5 +1,5 @@

#include "stream.hh"
#include "XrdTpcStream.hh"

#include "XrdSfs/XrdSfsInterface.hh"

Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions src/XrdTpc/tpc.cpp → src/XrdTpc/XrdTpcTPC.cc
Expand Up @@ -16,9 +16,9 @@
#include <sstream>
#include <stdexcept>

#include "state.hh"
#include "stream.hh"
#include "tpc.hh"
#include "XrdTpcState.hh"
#include "XrdTpcStream.hh"
#include "XrdTpcTPC.hh"
#include "XrdTpcCurlMulti.hh"

using namespace TPC;
Expand Down
File renamed without changes.

0 comments on commit 5c1181b

Please sign in to comment.