-
Notifications
You must be signed in to change notification settings - Fork 425
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] Add net
module in lib_ccxr
#1634
base: master
Are you sure you want to change the base?
[FEAT] Add net
module in lib_ccxr
#1634
Conversation
@elbertronnie How did you test your code? |
I don't remember the exact command I used but below are the general steps: You will have to create a CCExtractor server program using the following command line argument: Then run another instance of CCExtractor where you specify the input files, etc, with the additional argument: This will test the TCP implementation. I could not do for UDP as there is no way to send UDP packets in the program. Receiving UDP is still required since it is used in the Sample platform i guess. You will have to ask someone else for testing the UDP implementation. |
feat: Create new module `net` in lib_ccxr
3724ee3
to
dc460e4
Compare
CCExtractor CI platform finished running the test files on linux. Below is a summary of the test results, when compared to test for commit 90f9f0a...:
All tests passing on the master branch were passed completely. NOTE: The following tests have been failing on the master branch as well as the PR:
Congratulations: Merging this PR would fix the following tests:
Check the result page for more info. |
CCExtractor CI platform finished running the test files on windows. Below is a summary of the test results, when compared to test for commit 90f9f0a...:
All tests passing on the master branch were passed completely. NOTE: The following tests have been failing on the master branch as well as the PR:
Congratulations: Merging this PR would fix the following tests:
Check the result page for more info. |
In raising this pull request, I confirm the following (please check boxes):
My familiarity with the project is as follows (check one):
Currently WIP
Closes PR #1557
This PR adds networking primitives to send and receive captions across the internet. The networking functions are integrated into C codebase.
Rewrote of
networking.c
&networking.h
fileThanks to @elbertronnie who did this great work