init: fork GFW
Some checks failed
Quality check / Static analysis (push) Has been cancelled
Quality check / Tests (push) Has been cancelled

This commit is contained in:
hayzam
2026-02-05 23:30:06 +05:30
parent 3dbba63975
commit 7d1587ed9b
31 changed files with 66 additions and 66 deletions

View File

@@ -1,6 +1,6 @@
package tcp
import "github.com/DifuseHQ/Mellaris/analyzer"
import "git.difuse.io/Difuse/Mellaris/analyzer"
var _ analyzer.TCPAnalyzer = (*FETAnalyzer)(nil)

View File

@@ -5,8 +5,8 @@ import (
"strconv"
"strings"
"github.com/DifuseHQ/Mellaris/analyzer"
"github.com/DifuseHQ/Mellaris/analyzer/utils"
"git.difuse.io/Difuse/Mellaris/analyzer"
"git.difuse.io/Difuse/Mellaris/analyzer/utils"
)
var _ analyzer.TCPAnalyzer = (*HTTPAnalyzer)(nil)

View File

@@ -5,7 +5,7 @@ import (
"strings"
"testing"
"github.com/DifuseHQ/Mellaris/analyzer"
"git.difuse.io/Difuse/Mellaris/analyzer"
)
func TestHTTPParsing_Request(t *testing.T) {

View File

@@ -3,8 +3,8 @@ package tcp
import (
"net"
"github.com/DifuseHQ/Mellaris/analyzer"
"github.com/DifuseHQ/Mellaris/analyzer/utils"
"git.difuse.io/Difuse/Mellaris/analyzer"
"git.difuse.io/Difuse/Mellaris/analyzer/utils"
)
const (

View File

@@ -3,8 +3,8 @@ package tcp
import (
"strings"
"github.com/DifuseHQ/Mellaris/analyzer"
"github.com/DifuseHQ/Mellaris/analyzer/utils"
"git.difuse.io/Difuse/Mellaris/analyzer"
"git.difuse.io/Difuse/Mellaris/analyzer/utils"
)
var _ analyzer.TCPAnalyzer = (*SSHAnalyzer)(nil)

View File

@@ -1,9 +1,9 @@
package tcp
import (
"github.com/DifuseHQ/Mellaris/analyzer"
"github.com/DifuseHQ/Mellaris/analyzer/internal"
"github.com/DifuseHQ/Mellaris/analyzer/utils"
"git.difuse.io/Difuse/Mellaris/analyzer"
"git.difuse.io/Difuse/Mellaris/analyzer/internal"
"git.difuse.io/Difuse/Mellaris/analyzer/utils"
)
var _ analyzer.TCPAnalyzer = (*TLSAnalyzer)(nil)

View File

@@ -4,7 +4,7 @@ import (
"reflect"
"testing"
"github.com/DifuseHQ/Mellaris/analyzer"
"git.difuse.io/Difuse/Mellaris/analyzer"
)
func TestTlsStreamParsing_ClientHello(t *testing.T) {

View File

@@ -3,7 +3,7 @@ package tcp
import (
"bytes"
"github.com/DifuseHQ/Mellaris/analyzer"
"git.difuse.io/Difuse/Mellaris/analyzer"
)
var _ analyzer.TCPAnalyzer = (*TrojanAnalyzer)(nil)