Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

main #1

Merged
merged 1 commit into from
Dec 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _example/ssh/client/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"go-CFC/client"
"github.com/peakedshout/go-CFC/client"
"golang.org/x/crypto/ssh"
"golang.org/x/crypto/ssh/terminal"
"os"
Expand Down
2 changes: 1 addition & 1 deletion _example/ssh/ct/main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

import "go-CFC/server"
import "github.com/peakedshout/go-CFC/server"

func main() {
server.NewServer("127.0.0.1", ":9999", "6a647c0bf889419c84e461486f83d776")
Expand Down
2 changes: 1 addition & 1 deletion _example/ssh/server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"encoding/binary"
"fmt"
"github.com/creack/pty"
"go-CFC/client"
"github.com/peakedshout/go-CFC/client"
"golang.org/x/crypto/ssh"
"io"
"log"
Expand Down
4 changes: 2 additions & 2 deletions _example/test/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package main

import (
"bufio"
"go-CFC/client"
"go-CFC/server"
"github.com/peakedshout/go-CFC/client"
"github.com/peakedshout/go-CFC/server"
"log"
"time"
)
Expand Down
2 changes: 1 addition & 1 deletion client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package client
import (
"bufio"
"errors"
"go-CFC/tool"
"github.com/peakedshout/go-CFC/tool"
"net"
"sync"
"time"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module go-CFC
module github.com/peakedshout/go-CFC

go 1.19

Expand Down
2 changes: 1 addition & 1 deletion server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package server

import (
"bufio"
"go-CFC/tool"
"github.com/peakedshout/go-CFC/tool"
"log"
"net"
"sync"
Expand Down