Changes between Version 32 and Version 33 of JobSubmission
- Timestamp:
- Apr 21, 2014, 12:00:00 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
JobSubmission
v32 v33 56 56 In that case you must specify them as 57 57 {{{ 58 --remote_file filenameURL nbytes MD558 --remote_file URL nbytes MD5 59 59 }}} 60 60 … … 94 94 95 95 struct INFILE_DESC { 96 char name[1024]; // physical name97 96 bool is_remote; 98 // the following defined if remote 97 98 // the following defined if remote (physical name is jf_MD5) 99 // 99 100 double nbytes; 100 101 char md5[64]; 101 char url[1024]; 102 char url[1024]; // make this a vector to support multiple URLs 103 104 // the following defined if not remote 105 // 106 char name[1024]; // physical name 102 107 }; 103 108 109 104 110 }}}