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

Feat/improvements in sockets #604

Open
wants to merge 22 commits into
base: pharo-12
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
c529aa9
Merge branch 'cast' into pharoX
tesonep Sep 2, 2021
e5722d5
Removing SecurityPlugin dependencies.
tesonep Sep 2, 2021
e2b6d3f
Generating the SocketPlugin from code
tesonep Sep 2, 2021
96e6cdd
Making the Socket plugin to be generated.
tesonep Sep 2, 2021
354aa7e
Uncommented the generation of the whole VM
tesonep Sep 3, 2021
7b4c3ed
Merge branch 'pharoX' into feat/improvementsInSockets
tesonep Sep 3, 2021
585237d
Splitting NetNameResolver
tesonep Sep 8, 2021
119d311
Removing unused primitives
tesonep Sep 8, 2021
c1c5822
Cleaning up Socket implementation
tesonep Sep 8, 2021
01b21b8
Refactoring of socket plugin
tesonep Sep 8, 2021
7d071e6
Adding the address in all the send/recv/connect messages
tesonep Sep 9, 2021
6e3065f
Cleaning up and improving SocketPlugin
tesonep Sep 9, 2021
724caf8
Changing resolution of remote and local addresses
tesonep Sep 10, 2021
8afe381
Changing resolution of remote and local addresses
tesonep Sep 10, 2021
94a326d
Simplifying multi domain addresses
tesonep Sep 14, 2021
23dfbe8
Simplifying socket implementation
tesonep Sep 14, 2021
0882f5d
Improving the Socket implementation
tesonep Sep 22, 2021
a05c5bc
Merge branch 'pharoX' into feat/improvementsInSockets
tesonep Sep 24, 2021
47f9c92
Merge branch 'pharoX' into feat/improvementsInSockets
tesonep Nov 19, 2021
2b54ef3
Fixing the merge
tesonep May 15, 2023
37b0763
Adding missing functions in nameResolver
tesonep May 16, 2023
a382175
Merge branch 'pharo-12' into feat/improvementsInSockets
tesonep Sep 8, 2023
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
7 changes: 4 additions & 3 deletions cmake/vmmaker.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,10 @@ endfunction()
getVMMakerParameters(VM_Parameters)

set(PLUGIN_GENERATED_FILES
${PHARO_CURRENT_GENERATED}/plugins/src/FilePlugin/FilePlugin.c
${PHARO_CURRENT_GENERATED}/plugins/src/SurfacePlugin/SurfacePlugin.c
${PHARO_CURRENT_GENERATED}/plugins/src/FloatArrayPlugin/FloatArrayPlugin.c)
${PHARO_CURRENT_GENERATED}/plugins/src/FilePlugin/FilePlugin.c
${PHARO_CURRENT_GENERATED}/plugins/src/SocketPlugin/SocketPlugin.c
${PHARO_CURRENT_GENERATED}/plugins/src/SurfacePlugin/SurfacePlugin.c
${PHARO_CURRENT_GENERATED}/plugins/src/FloatArrayPlugin/FloatArrayPlugin.c)

if(GENERATE_SOURCES)

Expand Down
Loading