forked from moonlight-stream/moonlight-embedded
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from d3m3vilurr/update-modules
This patch will fix lots of report about GFE3.x, sockets, and etc. close #10 close #12 close #15 close #17 close #20 close #29 close #32 close #33 close #38 now new build require to update openssl, curl, newlib for vita and to update all submoduels (enet, moonlight-common-c repos changed to upstream tree)
- Loading branch information
Showing
8 changed files
with
36 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[submodule "common"] | ||
path = third_party/moonlight-common-c | ||
url = https://github.com/xyzz/moonlight-common-c.git | ||
url = https://github.com/moonlight-stream/moonlight-common-c.git | ||
[submodule "third_party/enet"] | ||
path = third_party/enet | ||
url = https://github.com/xyzz/vita-enet.git | ||
url = https://github.com/cgutman/enet.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule enet
updated
8 files
+4 −29 | host.c | |
+18 −49 | include/enet/enet.h | |
+22 −5 | include/enet/vita.h | |
+1 −0 | include/enet/win32.h | |
+7 −15 | protocol.c | |
+148 −180 | unix.c | |
+112 −214 | vita.c | |
+93 −113 | win32.c |
Submodule moonlight-common-c
updated
19 files
+3 −0 | .gitmodules | |
+4 −2 | README.md | |
+1 −0 | enet | |
+15 −55 | src/Connection.c | |
+20 −20 | src/ControlStream.c | |
+3 −3 | src/FakeCallbacks.c | |
+9 −9 | src/InputStream.c | |
+2 −1 | src/Limelight-internal.h | |
+19 −6 | src/Limelight.h | |
+37 −1 | src/Misc.c | |
+78 −50 | src/Platform.c | |
+9 −20 | src/Platform.h | |
+8 −12 | src/PlatformSockets.c | |
+32 −67 | src/PlatformSockets.h | |
+10 −8 | src/PlatformThreads.h | |
+12 −12 | src/RtspConnection.c | |
+5 −9 | src/SdpGenerator.c | |
+19 −3 | src/VideoDepacketizer.c | |
+3 −3 | src/VideoStream.c |