Changes between Version 32 and Version 33 of JobSubmission


Ignore:
Timestamp:
Apr 21, 2014, 12:00:00 PM (10 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • JobSubmission

    v32 v33  
    5656In that case you must specify them as
    5757{{{
    58 --remote_file filename URL nbytes MD5
     58--remote_file URL nbytes MD5
    5959}}}
    6060
     
    9494
    9595struct INFILE_DESC {
    96     char name[1024];     // physical name
    9796    bool is_remote;
    98     // the following defined if remote
     97
     98    // the following defined if remote (physical name is jf_MD5)
     99    //
    99100    double nbytes;
    100101    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
    102107};
    103108
     109
    104110}}}