change CreateTorrent to createTorrent
After some discussion, I decided it was probably best to not export this after all.
This commit is contained in:
parent
8f7b47f572
commit
199289a58d
|
@ -37,7 +37,7 @@ func hashPiece(piece []byte) []byte {
|
||||||
return h.Sum(nil)
|
return h.Sum(nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
func CreateTorrent(fileName string, filePath string) ([]byte, error) {
|
func createTorrent(fileName string, filePath string) ([]byte, error) {
|
||||||
chunk := make([]byte, TORRENT_PIECE_LENGTH)
|
chunk := make([]byte, TORRENT_PIECE_LENGTH)
|
||||||
|
|
||||||
torrent := Torrent{
|
torrent := Torrent{
|
||||||
|
@ -85,7 +85,7 @@ func fileTorrentHandler(c web.C, w http.ResponseWriter, r *http.Request) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
encoded, err := CreateTorrent(fileName, filePath)
|
encoded, err := createTorrent(fileName, filePath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
oopsHandler(c, w, r) // 500 - creating torrent failed
|
oopsHandler(c, w, r) // 500 - creating torrent failed
|
||||||
return
|
return
|
||||||
|
|
|
@ -11,7 +11,7 @@ func TestCreateTorrent(t *testing.T) {
|
||||||
fileName := "server.go"
|
fileName := "server.go"
|
||||||
var decoded Torrent
|
var decoded Torrent
|
||||||
|
|
||||||
encoded, err := CreateTorrent(fileName, fileName)
|
encoded, err := createTorrent(fileName, fileName)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
@ -47,7 +47,7 @@ func TestCreateTorrent(t *testing.T) {
|
||||||
func TestCreateTorrentWithImage(t *testing.T) {
|
func TestCreateTorrentWithImage(t *testing.T) {
|
||||||
var decoded Torrent
|
var decoded Torrent
|
||||||
|
|
||||||
encoded, err := CreateTorrent("test.jpg", "static/images/404.jpg")
|
encoded, err := createTorrent("test.jpg", "static/images/404.jpg")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue