(i uint64)
| 81 | } |
| 82 | |
| 83 | func (f *folder) findOutBindPair(i uint64) *bindPair { |
| 84 | for _, v := range f.bindPair { |
| 85 | if v.out == i { |
| 86 | return v |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | return nil |
| 91 | } |
| 92 | |
| 93 | func (f *folder) coderReader(readers []io.ReadCloser, coder uint64, password string) (io.ReadCloser, bool, error) { |
| 94 | dcomp := decompressor(f.coder[coder].id) |
no outgoing calls
no test coverage detected