Skip to content

Commit a7286b4

Browse files
committed
Update copyright declaration for the new year
1 parent 6bfa907 commit a7286b4

133 files changed

Lines changed: 174 additions & 139 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

application/application.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Sshwifty - A Web SSH client
22
//
3-
// Copyright (C) 2019-2022 Ni Rui <ranqus@gmail.com>
3+
// Copyright (C) 2019-2023 Ni Rui <ranqus@gmail.com>
44
//
55
// This program is free software: you can redistribute it and/or modify
66
// it under the terms of the GNU Affero General Public License as

application/command/commander.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Sshwifty - A Web SSH client
22
//
3-
// Copyright (C) 2019-2022 Ni Rui <ranqus@gmail.com>
3+
// Copyright (C) 2019-2023 Ni Rui <ranqus@gmail.com>
44
//
55
// This program is free software: you can redistribute it and/or modify
66
// it under the terms of the GNU Affero General Public License as

application/command/commands.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Sshwifty - A Web SSH client
22
//
3-
// Copyright (C) 2019-2022 Ni Rui <ranqus@gmail.com>
3+
// Copyright (C) 2019-2023 Ni Rui <ranqus@gmail.com>
44
//
55
// This program is free software: you can redistribute it and/or modify
66
// it under the terms of the GNU Affero General Public License as

application/command/fsm.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Sshwifty - A Web SSH client
22
//
3-
// Copyright (C) 2019-2022 Ni Rui <ranqus@gmail.com>
3+
// Copyright (C) 2019-2023 Ni Rui <ranqus@gmail.com>
44
//
55
// This program is free software: you can redistribute it and/or modify
66
// it under the terms of the GNU Affero General Public License as

application/command/handler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Sshwifty - A Web SSH client
22
//
3-
// Copyright (C) 2019-2022 Ni Rui <ranqus@gmail.com>
3+
// Copyright (C) 2019-2023 Ni Rui <ranqus@gmail.com>
44
//
55
// This program is free software: you can redistribute it and/or modify
66
// it under the terms of the GNU Affero General Public License as

application/command/handler_echo_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Sshwifty - A Web SSH client
22
//
3-
// Copyright (C) 2019-2022 Ni Rui <ranqus@gmail.com>
3+
// Copyright (C) 2019-2023 Ni Rui <ranqus@gmail.com>
44
//
55
// This program is free software: you can redistribute it and/or modify
66
// it under the terms of the GNU Affero General Public License as

application/command/handler_stream_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Sshwifty - A Web SSH client
22
//
3-
// Copyright (C) 2019-2022 Ni Rui <ranqus@gmail.com>
3+
// Copyright (C) 2019-2023 Ni Rui <ranqus@gmail.com>
44
//
55
// This program is free software: you can redistribute it and/or modify
66
// it under the terms of the GNU Affero General Public License as

application/command/handler_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Sshwifty - A Web SSH client
22
//
3-
// Copyright (C) 2019-2022 Ni Rui <ranqus@gmail.com>
3+
// Copyright (C) 2019-2023 Ni Rui <ranqus@gmail.com>
44
//
55
// This program is free software: you can redistribute it and/or modify
66
// it under the terms of the GNU Affero General Public License as

application/command/header.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Sshwifty - A Web SSH client
22
//
3-
// Copyright (C) 2019-2022 Ni Rui <ranqus@gmail.com>
3+
// Copyright (C) 2019-2023 Ni Rui <ranqus@gmail.com>
44
//
55
// This program is free software: you can redistribute it and/or modify
66
// it under the terms of the GNU Affero General Public License as

application/command/streams.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Sshwifty - A Web SSH client
22
//
3-
// Copyright (C) 2019-2022 Ni Rui <ranqus@gmail.com>
3+
// Copyright (C) 2019-2023 Ni Rui <ranqus@gmail.com>
44
//
55
// This program is free software: you can redistribute it and/or modify
66
// it under the terms of the GNU Affero General Public License as
@@ -243,7 +243,9 @@ func (w StreamResponder) Send(marker byte, data []byte, buf []byte) error {
243243
// SendManual sends the data without automatical segmentation. It will construct
244244
// the data package directly using the given `data` buffer, that is, the first
245245
// n bytes of the given `data` will be used to setup headers. It is the caller's
246-
// responsibility to leave n bytes of space so no meaningful data will be over
246+
//
247+
// responsibility to leave n bytes of space so no meaningful data will be over
248+
//
247249
// written. The number n can be acquired by calling .HeaderSize() method.
248250
func (w StreamResponder) SendManual(marker byte, data []byte) error {
249251
dataLen := len(data)

0 commit comments

Comments
 (0)