This is an automated email from the git hooks/post-receive script.
dcf pushed a change to branch main in repository pluggable-transports/goptlib.
from 24b2b14 Move repository URL to gitlab.torproject.org. new 0630d8d Revert "Move repository URL to gitlab.torproject.org." new c484712 Moved to https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptl....
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference.
Summary of changes: ChangeLog | 5 ----- README | 13 ++++++++++--- examples/dummy-client/dummy-client.go | 2 +- examples/dummy-server/dummy-server.go | 2 +- go.mod | 2 +- 5 files changed, 13 insertions(+), 11 deletions(-)
This is an automated email from the git hooks/post-receive script.
dcf pushed a commit to branch main in repository pluggable-transports/goptlib.
commit 0630d8d2ab5c1e1969a73958ca07d3ddcf1fcf71 Author: David Fifield david@bamsoftware.com AuthorDate: Fri Apr 14 19:56:03 2023 -0600
Revert "Move repository URL to gitlab.torproject.org."
This reverts commit 24b2b145d7afc66b66e58c702cf988c00f694b70. --- ChangeLog | 5 ----- README | 6 +++--- examples/dummy-client/dummy-client.go | 2 +- examples/dummy-server/dummy-server.go | 2 +- go.mod | 2 +- 5 files changed, 6 insertions(+), 11 deletions(-)
diff --git a/ChangeLog b/ChangeLog index 17ee270..360baf3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,3 @@ -== v1.4.0 - -Moved the repository URL from git.torproject.org/pluggable-transports/goptlib.git -to gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptlib. - == v1.3.0
Added a DialOrWithDialer function that allows you to, for example, use a diff --git a/README b/README index 20cb428..1a48b3c 100644 --- a/README +++ b/README @@ -4,7 +4,7 @@ https://spec.torproject.org/pt-spec https://spec.torproject.org/ext-orport-spec
To download a copy of the library into $GOPATH: - go get gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptlib + go get git.torproject.org/pluggable-transports/goptlib.git
See the included example programs for examples of how to use the library. To build them, enter their directory and run "go build". @@ -14,10 +14,10 @@ The recommended way to start writing a new transport plugin is to copy dummy-client or dummy-server and make changes to it.
There is browseable documentation here: -https://pkg.go.dev/gitlab.torproject.org/tpo/anti-censorship/pluggable-trans... +https://godoc.org/git.torproject.org/pluggable-transports/goptlib.git
Report bugs to the tor-dev@lists.torproject.org mailing list or to the -bug tracker at https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptl.... +bug tracker at https://trac.torproject.org/projects/tor.
To the extent possible under law, the authors have dedicated all copyright and related and neighboring rights to this software to the diff --git a/examples/dummy-client/dummy-client.go b/examples/dummy-client/dummy-client.go index 973e76d..b1a9647 100644 --- a/examples/dummy-client/dummy-client.go +++ b/examples/dummy-client/dummy-client.go @@ -20,7 +20,7 @@ import ( "syscall" )
-import "gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptlib" +import "git.torproject.org/pluggable-transports/goptlib.git"
var ptInfo pt.ClientInfo
diff --git a/examples/dummy-server/dummy-server.go b/examples/dummy-server/dummy-server.go index eb8f768..f3b0c8f 100644 --- a/examples/dummy-server/dummy-server.go +++ b/examples/dummy-server/dummy-server.go @@ -21,7 +21,7 @@ import ( "syscall" )
-import "gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptlib" +import "git.torproject.org/pluggable-transports/goptlib.git"
var ptInfo pt.ServerInfo
diff --git a/go.mod b/go.mod index bd1ec3e..aec837f 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptlib +module git.torproject.org/pluggable-transports/goptlib.git
go 1.11
This is an automated email from the git hooks/post-receive script.
dcf pushed a commit to branch main in repository pluggable-transports/goptlib.
commit c4847124170a0b3c650ff6fccd5e5396257c6d54 Author: David Fifield david@bamsoftware.com AuthorDate: Fri Apr 14 19:50:55 2023 -0600
Moved to https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptl.... --- README | 7 +++++++ 1 file changed, 7 insertions(+)
diff --git a/README b/README index 1a48b3c..a65cab6 100644 --- a/README +++ b/README @@ -1,3 +1,10 @@ +Since 2023-04-15, this repository has moved from git.torproject.org to +https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/goptl.... + +See: https://bugs.torproject.org/tpo/anti-censorship/team/86#note_2823122 + +---- + goptlib is a library for writing Tor pluggable transports in Go.
https://spec.torproject.org/pt-spec
tor-commits@lists.torproject.org