change CreateTorrent to createTorrent

After some discussion, I decided it was probably best to not export this
after all.
This commit is contained in:
mutantmonkey 2015-10-01 22:33:30 -07:00
parent 8f7b47f572
commit 199289a58d
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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)
} }