From 2ae0fc6d858ea65aba39bcd057008c8f70620bc1 Mon Sep 17 00:00:00 2001 From: Matthew Clark <484943+mclark4386@users.noreply.github.com> Date: Wed, 31 Jul 2024 01:47:55 -0500 Subject: [PATCH 1/2] Add acknowledge to QUIT command --- commands.go | 1 + 1 file changed, 1 insertion(+) diff --git a/commands.go b/commands.go index c88fa70..4f4cdba 100644 --- a/commands.go +++ b/commands.go @@ -495,6 +495,7 @@ func (cmd commandQuit) RequireAuth() bool { } func (cmd commandQuit) Execute(conn *ftpConn, param string) { + conn.writeMessage(221, "Goodbye") conn.Close() } From 0d3f9b54b4b7a54acb9afecca7a7a4d032a2a16d Mon Sep 17 00:00:00 2001 From: Matthew Clark <484943+mclark4386@users.noreply.github.com> Date: Wed, 14 Aug 2024 14:30:26 -0500 Subject: [PATCH 2/2] Update go.mod *Should hopefully let go use the new repo correctly --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 042091f..8c0a50a 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/yob/graval +module github.com/New-Boundary-Technologies/graval go 1.12