2018-07-11 23:16:17 +00:00
|
|
|
package peer_protocol
|
|
|
|
|
2018-07-13 11:33:21 +00:00
|
|
|
import "fmt"
|
|
|
|
|
2018-07-11 23:16:17 +00:00
|
|
|
type RequestSpec struct {
|
|
|
|
Index, Begin, Length Integer
|
|
|
|
}
|
2018-07-13 11:33:21 +00:00
|
|
|
|
|
|
|
func (me RequestSpec) String() string {
|
|
|
|
return fmt.Sprintf("{%d %d %d}", me.Index, me.Begin, me.Length)
|
|
|
|
}
|