Add comments to make golint happy.
This commit is contained in:
parent
816e28448f
commit
5807e676a3
1
ftp.go
1
ftp.go
@ -16,6 +16,7 @@ import (
|
||||
// EntryType describes the different types of an Entry.
|
||||
type EntryType int
|
||||
|
||||
// The differents types of an Entry
|
||||
const (
|
||||
EntryTypeFile EntryType = iota
|
||||
EntryTypeFolder
|
||||
|
@ -1,14 +1,13 @@
|
||||
package ftp
|
||||
|
||||
// FTP status codes, defined in RFC 959
|
||||
const (
|
||||
// Positive Preliminary reply
|
||||
StatusInitiating = 100
|
||||
StatusRestartMarker = 110
|
||||
StatusReadyMinute = 120
|
||||
StatusAlreadyOpen = 125
|
||||
StatusAboutToSend = 150
|
||||
|
||||
// Positive Completion reply
|
||||
StatusCommandOK = 200
|
||||
StatusCommandNotImplemented = 202
|
||||
StatusSystem = 211
|
||||
@ -29,12 +28,10 @@ const (
|
||||
StatusRequestedFileActionOK = 250
|
||||
StatusPathCreated = 257
|
||||
|
||||
// Positive Intermediate reply
|
||||
StatusUserOK = 331
|
||||
StatusLoginNeedAccount = 332
|
||||
StatusRequestFilePending = 350
|
||||
|
||||
// Transient Negative Completion reply
|
||||
StatusNotAvailable = 421
|
||||
StatusCanNotOpenDataConnection = 425
|
||||
StatusTransfertAborted = 426
|
||||
@ -44,7 +41,6 @@ const (
|
||||
StatusActionAborted = 451
|
||||
Status452 = 452
|
||||
|
||||
// Permanent Negative Completion reply
|
||||
StatusBadCommand = 500
|
||||
StatusBadArguments = 501
|
||||
StatusNotImplemented = 502
|
||||
|
Loading…
Reference in New Issue
Block a user