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

Dev #2

Open
wants to merge 60 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
60 commits
Select commit Hold shift + click to select a range
ab84f8e
add gitignore
Jun 30, 2023
f994261
additional place where unsecure to put to public
Jun 30, 2023
8591adb
try to build arm image
Jul 3, 2023
9cbaf52
change submodule config
Jul 3, 2023
1201988
change pjsip config submodule
Jul 3, 2023
3d62174
update pjproject
Jul 3, 2023
bcb8103
update config_side.h
Jul 3, 2023
fabdb5f
add MAOS build
Jul 3, 2023
636ccd1
still not yet success
Jul 3, 2023
c8e6dde
change and fixed
Jul 3, 2023
d68d070
additional attrs for build arm
Jul 3, 2023
a79b70c
update build
Jul 3, 2023
5a8e368
change st
Jul 3, 2023
d261b4d
update
Jul 3, 2023
7a94824
update
Jul 3, 2023
ec4309f
build arm/v7
Jul 3, 2023
a43f42b
build arm/v7
Jul 3, 2023
1904b02
arm build
Jul 3, 2023
d782d84
autobuild
Jul 4, 2023
4323c8a
build with endianess
Jul 4, 2023
e7fd448
change something else
Jul 4, 2023
b1d317b
change something else
Jul 4, 2023
bb3f120
change something else
Jul 4, 2023
3eda907
change something else
Jul 4, 2023
b740798
change something else
Jul 4, 2023
316cc2a
build new
Jul 4, 2023
b3aaa2e
add additional attr to build
Jul 4, 2023
67b79bc
there a lot of fail
Jul 4, 2023
2eccba6
all
Jul 4, 2023
9404b27
update'
Jul 4, 2023
8431f0b
update'
Jul 4, 2023
d6034f2
feature/mac
Jul 22, 2023
af9af4b
demo_xml
Jul 22, 2023
c784ad0
new update build pjproject 1.13.1
Jul 22, 2023
77dcc30
fix ignore
Jul 22, 2023
67c8a65
feature/mac
Jul 22, 2023
9069cce
fixed
Jul 22, 2023
bcd2451
new dockerfile arm
Jul 22, 2023
fa6ca11
new dockerfile arm
Jul 22, 2023
bcd6403
update some awesome
Jul 23, 2023
156ed54
oh some change
Jul 23, 2023
aa3a0e1
refactor
Jul 23, 2023
9feed71
feature/mac
Jul 23, 2023
9b846ff
new config_site
Jul 23, 2023
463bd00
fix issue config_site
Jul 23, 2023
837bb6b
feature/mac
Jul 23, 2023
50845d5
ignore
Jul 23, 2023
ab96973
upgrade remove
Jul 23, 2023
e74d00b
abc
Jul 23, 2023
dbc4dcb
feature
Jul 23, 2023
e27b26d
update
Jul 23, 2023
9c61edf
build-arm-fix-config_site_arm.h
Jul 23, 2023
62a3bc6
CMake bundle
Jul 24, 2023
b8a67a9
update cmake
Jul 24, 2023
59f45ca
changed mac
kevinnguyenai Jul 24, 2023
cb5b4e6
new dev
kevinnguyenai Jul 24, 2023
8ef1b1d
update interval loop testing
Feb 6, 2024
33d819d
testing loop on udp
Feb 6, 2024
484a17d
update testing
Feb 6, 2024
2becf30
update dev with new test conf
Apr 23, 2024
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
46 changes: 46 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Prerequisites
*.d

# Compiled Object files
*.slo
*.lo
*.o
*.obj

# Precompiled Headers
*.gch
*.pch

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Fortran module files
*.mod
*.smod

# Compiled Static libraries
*.lai
*.la
*.a
*.lib

# Executables
*.exe
*.out
*.app

# build
build/**
docker/xml/demo_server.xml
docker/xml/*.xml
CMakeFiles/**
CMakeCache.txt
cmake_install.cmake
Makefile
.vscode/**

## testing result
/load_test/*.json
/load_test/*.pjsua
3 changes: 2 additions & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[submodule "pjproject"]
path = pjproject
url = https://github.com/jchavanton/pjproject.git
url = https://github.com/pjsip/pjproject
branch = master
24 changes: 24 additions & 0 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"configurations": [
{
"name": "Mac",
"includePath": [
"${workspaceFolder}/**",
"${workspaceFolder}/pjproject/pjlib/include",
"${workspaceFolder}/pjproject/pjlib-util/include",
"/Users/ntuan1/vcpkg/installed/arm64-osx/include/openssl",
"/Users/ntuan1/vcpkg/installed/arm64-osx/include"
],
"defines": [],
"macFrameworkPath": [
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks"
],
"compilerPath": "/usr/bin/clang",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "macos-clang-arm64",
"configurationProvider": "ms-vscode.cmake-tools"
}
],
"version": 4
}
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"files.associations": {
"rsa.h": "c",
"err.h": "c",
"bn.h": "c"
},
"cmake.cmakePath": "/opt/homebrew/bin/cmake"
}
Loading