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

Fix nat64 port change observing #90

Merged
merged 4 commits into from
Jul 24, 2024
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 ios_framework/openssl/openssl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ _copy_to_destination() {

if [ ! -e ${OPENSSL_VERSION}.tar.gz ]; then
echo "Downloading ${OPENSSL_VERSION}.tar.gz"
curl -O -L -s https://www.openssl.org/source/${OPENSSL_VERSION}.tar.gz
curl -O -L -s https://github.com/openssl/openssl/releases/download/${OPENSSL_VERSION}/${OPENSSL_VERSION}.tar.gz
else
echo "Using ${OPENSSL_VERSION}.tar.gz"
fi
Expand Down
2 changes: 1 addition & 1 deletion pjlib/include/pj/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -1502,7 +1502,7 @@ PJ_BEGIN_DECL
* Extra suffix for the version (e.g. "-trunk"), or empty for
* web release version.
*/
#define PJ_VERSION_NUM_EXTRA "-6"
#define PJ_VERSION_NUM_EXTRA "-7"

/**
* PJLIB version number consists of three bytes with the following format:
Expand Down
Loading
Loading