mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 11:46:36 +00:00
22 lines
325 B
Go
22 lines
325 B
Go
// +build go1.8
|
|
|
|
package sftp
|
|
|
|
import "sort"
|
|
|
|
type responsePackets []responsePacket
|
|
|
|
func (r responsePackets) Sort() {
|
|
sort.Slice(r, func(i, j int) bool {
|
|
return r[i].id() < r[j].id()
|
|
})
|
|
}
|
|
|
|
type requestPacketIDs []uint32
|
|
|
|
func (r requestPacketIDs) Sort() {
|
|
sort.Slice(r, func(i, j int) bool {
|
|
return r[i] < r[j]
|
|
})
|
|
}
|