Skip to content

Commit cc712c8

Browse files
committed
Update
1 parent 116bc9d commit cc712c8

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

examples/socket/tcp_fd_passing/tcpserver/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"net"
77
"time"
88

9-
"github.com/devlights/try-golang/examples/socket/tcp_fd_passing/fdpassing"
9+
"github.com/devlights/fdpassing"
1010
)
1111

1212
func main() {

examples/socket/tcp_fd_passing/udsserver/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"net"
99
"os"
1010

11-
"github.com/devlights/try-golang/examples/socket/tcp_fd_passing/fdpassing"
11+
"github.com/devlights/fdpassing"
1212
)
1313

1414
func main() {

go.mod

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
golang.org/x/crypto v0.36.0
1111
golang.org/x/exp v0.0.0-20240904232852-e7e105dedf7e
1212
golang.org/x/sync v0.12.0
13-
golang.org/x/sys v0.31.0
13+
golang.org/x/sys v0.32.0
1414
golang.org/x/term v0.30.0
1515
golang.org/x/text v0.23.0
1616
gopkg.in/ini.v1 v1.67.0
@@ -19,3 +19,5 @@ require (
1919
)
2020

2121
require github.com/muesli/cancelreader v0.2.2
22+
23+
require github.com/devlights/fdpassing v1.0.1

go.sum

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
22
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3+
github.com/devlights/fdpassing v1.0.1 h1:O9JBm3wpay8NIbjteVV7elZwtqi6ie+X1PbH1WR3y8Y=
4+
github.com/devlights/fdpassing v1.0.1/go.mod h1:eNoNi77gbfz/CsUtmnH3kZ64HVcK3ttFsKYxJopSPZ4=
35
github.com/devlights/gomy v0.6.0 h1:7BT8bSxr+ZeNkgEYNufuM2rSc6kIoN6g2FSZvrcT9zw=
46
github.com/devlights/gomy v0.6.0/go.mod h1:d28qyQ+/s7JravMlss2kIFxWxhY2KLlpe7rIBZ5YKeA=
57
github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
@@ -23,8 +25,8 @@ golang.org/x/exp v0.0.0-20240904232852-e7e105dedf7e h1:I88y4caeGeuDQxgdoFPUq097j
2325
golang.org/x/exp v0.0.0-20240904232852-e7e105dedf7e/go.mod h1:akd2r19cwCdwSwWeIdzYQGa/EZZyqcOdwWiwj5L5eKQ=
2426
golang.org/x/sync v0.12.0 h1:MHc5BpPuC30uJk597Ri8TV3CNZcTLu6B6z4lJy+g6Jw=
2527
golang.org/x/sync v0.12.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA=
26-
golang.org/x/sys v0.31.0 h1:ioabZlmFYtWhL+TRYpcnNlLwhyxaM9kWTDEmfnprqik=
27-
golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
28+
golang.org/x/sys v0.32.0 h1:s77OFDvIQeibCmezSnk/q6iAfkdiQaJi4VzroCFrN20=
29+
golang.org/x/sys v0.32.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
2830
golang.org/x/term v0.30.0 h1:PQ39fJZ+mfadBm0y5WlL4vlM7Sx1Hgf13sMIY2+QS9Y=
2931
golang.org/x/term v0.30.0/go.mod h1:NYYFdzHoI5wRh/h5tDMdMqCqPJZEuNqVR5xJLd/n67g=
3032
golang.org/x/text v0.23.0 h1:D71I7dUrlY+VX0gQShAThNGHFxZ13dGLBHQLVl1mJlY=

0 commit comments

Comments
 (0)