Skip to content

Commit

Permalink
Merge branch 'master' into checkin_api
Browse files Browse the repository at this point in the history
  • Loading branch information
bassosimone committed Jan 27, 2021
2 parents 18c8bec + 87c73c8 commit e1fb00f
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
with:
go-version: "1.14"
- uses: actions/checkout@v2
- run: brew cask install android-sdk
- run: brew install --cask android-sdk
- run: echo y | sdkmanager --install "platforms;android-29"
- run: echo y | sdkmanager --install "ndk;21.3.6528147"
- run: ./build-android.bash
Expand Down
2 changes: 1 addition & 1 deletion build-android.bash
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if [ -z "$ANDROID_HOME" -o "$1" = "--help" ]; then
echo "Please set ANDROID_HOME. We assume you have installed"
echo "the Android SDK. You can do that on macOS using:"
echo ""
echo " brew cask install android-sdk"
echo " brew install --cask android-sdk"
echo ""
echo "Then make sure you install the required packages:"
echo ""
Expand Down
1 change: 1 addition & 0 deletions internal/psiphonx/private/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*
2 changes: 1 addition & 1 deletion netx/archival/archival.go
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ type TLSHandshake struct {
func NewTLSHandshakesList(begin time.Time, events []trace.Event) []TLSHandshake {
var out []TLSHandshake
for _, ev := range events {
if ev.Name != "tls_handshake_done" {
if !strings.Contains(ev.Name, "_handshake_done") {
continue
}
out = append(out, TLSHandshake{
Expand Down
2 changes: 1 addition & 1 deletion netx/quicdialer/saver.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@ func (h HandshakeSaver) DialContext(ctx context.Context, network string,
TLSVersion: tlsx.VersionString(state.Version),
Time: stop,
})
return sess, err
return sess, nil
}
1 change: 1 addition & 0 deletions resources/private/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*
2 changes: 1 addition & 1 deletion testusing.bash
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ func main() {
EOF
go get -v github.com/ooni/probe-engine@$GITHUB_SHA
go build -v .
./x -OTunnel=psiphon -ni https://www.example.com urlgetter
./x --yes -OTunnel=psiphon -ni https://www.example.com urlgetter
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
package version

// Version is the version of the engine
const Version = "0.23.0-alpha.1"
const Version = "0.23.0-alpha.2"

0 comments on commit e1fb00f

Please sign in to comment.