Print

Print


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "xrootd".

The branch, master has been updated
       via  9e1e2bd8b23ddcd30421661582841a3a8eb2e543 (commit)
       via  b8e370d2f41839f7c695ceb66744883611ac9697 (commit)
       via  90ed96a71558cfe6485f2dd0d666bffbb3a30c2f (commit)
       via  3ffbb9960537a58ca2c90e017a8b3b36b33644ee (commit)
       via  f86814ce59d1bdcfbf1095b7b74951b7eb4218d8 (commit)
      from  80bb3b869d68a5f3a013830f9bc884080cbb02cc (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 9e1e2bd8b23ddcd30421661582841a3a8eb2e543
Author: Andrew Hanushevsky <[log in to unmask]>
Date:   Sun Apr 1 23:12:20 2012 -0700

    beta documentation ofr xrdcp.

commit b8e370d2f41839f7c695ceb66744883611ac9697
Author: Andrew Hanushevsky <[log in to unmask]>
Date:   Sun Apr 1 23:10:05 2012 -0700

    Third party copy support; see docs for details.

commit 90ed96a71558cfe6485f2dd0d666bffbb3a30c2f
Author: Andrew Hanushevsky <[log in to unmask]>
Date:   Sun Apr 1 23:03:57 2012 -0700

    Third copy support, see doc for details.

commit 3ffbb9960537a58ca2c90e017a8b3b36b33644ee
Author: Andrew Hanushevsky <[log in to unmask]>
Date:   Sun Apr 1 23:02:32 2012 -0700

     - Properly set error message return on callback (it was getting lost).
     - Allow related path to be passed back for monitoring purposes.

commit f86814ce59d1bdcfbf1095b7b74951b7eb4218d8
Author: Andrew Hanushevsky <[log in to unmask]>
Date:   Sun Apr 1 22:59:06 2012 -0700

      - Prevent SEGV when a callback occurs for a non-data operation.
      - Properly reflect failures on callbacks.

-----------------------------------------------------------------------

Summary of changes:
 LICENSE                            |    2 +-
 docs/man/xrdcpy.1                  |  247 ++++++
 src/XrdApps.cmake                  |   24 +-
 src/XrdApps/XrdCpConfig.cc         |  722 ++++++++++++++++
 src/XrdApps/XrdCpConfig.hh         |  172 ++++
 src/XrdApps/XrdCpFile.cc           |  123 +++
 src/XrdApps/XrdCpFile.hh           |   44 +
 src/XrdApps/XrdCpy.cc              | 1636 ++++++++++++++++++++++++++++++++++++
 src/XrdCks/XrdCks.hh               |   11 +
 src/XrdCks/XrdCksData.hh           |   22 +-
 src/XrdCks/XrdCksManager.cc        |   14 +
 src/XrdCks/XrdCksManager.hh        |    2 +
 src/XrdClient/XrdClientConn.cc     |    5 +-
 src/XrdClient/XrdCpWorkLst.cc      |   22 +-
 src/XrdClient/XrdCpWorkLst.hh      |    8 +-
 src/XrdOfs.cmake                   |    7 +-
 src/XrdOfs/XrdOfs.cc               |   42 +-
 src/XrdOfs/XrdOfs.hh               |    8 +-
 src/XrdOfs/XrdOfsConfig.cc         |  144 ++++-
 src/XrdOfs/XrdOfsStats.hh          |    4 +
 src/XrdOfs/XrdOfsTPC.cc            |  508 +++++++++++
 src/XrdOfs/XrdOfsTPC.hh            |  117 +++
 src/XrdOfs/XrdOfsTPCAuth.cc        |  263 ++++++
 src/XrdOfs/XrdOfsTPCAuth.hh        |   49 ++
 src/XrdOfs/XrdOfsTPCInfo.cc        |  146 ++++
 src/XrdOfs/XrdOfsTPCInfo.hh        |   62 ++
 src/XrdOfs/XrdOfsTPCJob.cc         |  159 ++++
 src/XrdOfs/XrdOfsTPCJob.hh         |   45 +
 src/XrdOfs/XrdOfsTPCProg.cc        |  184 ++++
 src/XrdOfs/XrdOfsTPCProg.hh        |   51 ++
 src/XrdOuc/XrdOucCallBack.cc       |    1 +
 src/XrdOuc/XrdOucCallBack.hh       |    2 +-
 src/XrdOuc/XrdOucProg.hh           |    6 +-
 src/XrdOuc/XrdOucTPC.cc            |  122 +++
 src/XrdOuc/XrdOucTPC.hh            |   56 ++
 src/XrdUtils.cmake                 |    1 +
 src/XrdXrootd/XrdXrootdProtocol.cc |    6 +-
 src/XrdXrootd/XrdXrootdXeq.cc      |   21 +-
 38 files changed, 5030 insertions(+), 28 deletions(-)
 create mode 100644 docs/man/xrdcpy.1
 create mode 100644 src/XrdApps/XrdCpConfig.cc
 create mode 100644 src/XrdApps/XrdCpConfig.hh
 create mode 100644 src/XrdApps/XrdCpFile.cc
 create mode 100644 src/XrdApps/XrdCpFile.hh
 create mode 100644 src/XrdApps/XrdCpy.cc
 create mode 100644 src/XrdOfs/XrdOfsTPC.cc
 create mode 100644 src/XrdOfs/XrdOfsTPC.hh
 create mode 100644 src/XrdOfs/XrdOfsTPCAuth.cc
 create mode 100644 src/XrdOfs/XrdOfsTPCAuth.hh
 create mode 100644 src/XrdOfs/XrdOfsTPCInfo.cc
 create mode 100644 src/XrdOfs/XrdOfsTPCInfo.hh
 create mode 100644 src/XrdOfs/XrdOfsTPCJob.cc
 create mode 100644 src/XrdOfs/XrdOfsTPCJob.hh
 create mode 100644 src/XrdOfs/XrdOfsTPCProg.cc
 create mode 100644 src/XrdOfs/XrdOfsTPCProg.hh
 create mode 100644 src/XrdOuc/XrdOucTPC.cc
 create mode 100644 src/XrdOuc/XrdOucTPC.hh


hooks/post-receive
-- 
xrootd

########################################################################
Use REPLY-ALL to reply to list

To unsubscribe from the XROOTD-DEV list, click the following link:
https://listserv.slac.stanford.edu/cgi-bin/wa?SUBED1=XROOTD-DEV&A=1