2014-03-28 13:36:57 +00:00
|
|
|
// +build !windows,!darwin
|
|
|
|
|
|
|
|
package protocol
|
|
|
|
|
|
|
|
// Normal Unixes uses NFC and slashes, which is the wire format.
|
|
|
|
|
|
|
|
type nativeModel struct {
|
|
|
|
next Model
|
|
|
|
}
|
|
|
|
|
2014-03-29 17:53:48 +00:00
|
|
|
func (m nativeModel) Index(nodeID string, repo string, files []FileInfo) {
|
|
|
|
m.next.Index(nodeID, repo, files)
|
2014-03-28 13:36:57 +00:00
|
|
|
}
|
|
|
|
|
2014-03-29 17:53:48 +00:00
|
|
|
func (m nativeModel) IndexUpdate(nodeID string, repo string, files []FileInfo) {
|
|
|
|
m.next.IndexUpdate(nodeID, repo, files)
|
2014-03-28 13:36:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m nativeModel) Request(nodeID, repo string, name string, offset int64, size int) ([]byte, error) {
|
|
|
|
return m.next.Request(nodeID, repo, name, offset, size)
|
|
|
|
}
|
|
|
|
|
2014-04-13 13:28:26 +00:00
|
|
|
func (m nativeModel) ClusterConfig(nodeID string, config ClusterConfigMessage) {
|
|
|
|
m.next.ClusterConfig(nodeID, config)
|
|
|
|
}
|
|
|
|
|
2014-03-28 13:36:57 +00:00
|
|
|
func (m nativeModel) Close(nodeID string, err error) {
|
|
|
|
m.next.Close(nodeID, err)
|
|
|
|
}
|