| 278 | } |
| 279 | |
| 280 | int ErasureCodeLrc::parse(ErasureCodeProfile &profile, |
| 281 | ostream *ss) |
| 282 | { |
| 283 | int r = ErasureCode::parse(profile, ss); |
| 284 | if (r) |
| 285 | return r; |
| 286 | |
| 287 | return parse_rule(profile, ss); |
| 288 | } |
| 289 | |
| 290 | const string ErasureCodeLrc::DEFAULT_KML("-1"); |
| 291 |