Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dCache
cta
Commits
385d0685
Commit
385d0685
authored
20 years ago
by
Olof Barring
Browse files
Options
Downloads
Patches
Plain Diff
Add common structures for rtcpcldapi.c and rtcpcldCatalogueInterface.c
parent
59ee2511
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
h/rtcpcld.h
+31
-3
31 additions, 3 deletions
h/rtcpcld.h
with
31 additions
and
3 deletions
h/rtcpcld.h
+
31
−
3
View file @
385d0685
...
...
@@ -27,6 +27,30 @@ typedef struct RtcpcldVIDChild {
struct
RtcpcldVIDChild
*
prev
;
}
RtcpcldVIDChild_t
;
#if defined(CASTOR_STAGER_TAPE_H) && defined(CASTOR_STAGER_SEGMENT_H)
#define ID_TYPE unsigned long
typedef
struct
RtcpcldTapeList
{
tape_list_t
*
tape
;
struct
Cstager_Tape_t
*
tp
;
struct
RtcpcldSegmentList
*
segments
;
struct
RtcpcldTapeList
*
next
;
struct
RtcpcldTapeList
*
prev
;
}
RtcpcldTapeList_t
;
typedef
struct
RtcpcldSegmentList
{
file_list_t
*
file
;
struct
Cstager_Segment_t
*
segment
;
struct
RtcpcldTapeList
*
tp
;
struct
RtcpcldSegmentList
*
next
;
struct
RtcpcldSegmentList
*
prev
;
}
RtcpcldSegmentList_t
;
#endif
/* CASTOR_STAGER_TAPE_H && CASTOR_STAGER_SEGMENT_H */
int
rtcpcld_InitNW
_PROTO
((
SOCKET
**
));
...
...
@@ -79,15 +103,19 @@ int rtcpcld_getReqsForVID _PROTO((
int
rtcpcld_anyReqsForVID
_PROTO
((
tape_list_t
*
));
#if defined(CASTOR_STAGER_TAPE_H) && defined(CASTOR_STAGER_SEGMENT_H)
int
rtcpcld_updateVIDStatus
_PROTO
((
tape_list_t
*
,
enum
TpInfo
StatusCodes
,
enum
TpInfo
StatusCodes
enum
Cstager_Tape
StatusCodes
_t
,
enum
Cstager_Tape
StatusCodes
_t
));
int
rtcpcld_setFileStatus
_PROTO
((
rtcpFileRequest_t
*
,
enum
TpFileInfo
StatusCodes
enum
Cstager_Segment
StatusCodes
_t
));
#endif
/* CASTOR_STAGER_TAPE_H) && CASTOR_STAGER_SEGMENT_H */
int
rtcpcld_getPhysicalPath
_PROTO
((
rtcpTapeRequest_t
*
,
rtcpFileRequest_t
*
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment