-
-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for generic srt socket options set/get. (#4325)
- Loading branch information
Showing
8 changed files
with
285 additions
and
55 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
33 changes: 33 additions & 0 deletions
33
.github/opam/packages/posix-base-windows/posix-base-windows.2.2.0/opam
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: "Bindings for posix sockets" | ||
description: | ||
"posix-socket provides the types and bindings of posix sockets APIs available on both unix and windows." | ||
maintainer: ["[email protected]"] | ||
authors: ["Romain Beauxis"] | ||
license: "MIT" | ||
homepage: "https://github.com/savonet/ocaml-posix" | ||
bug-reports: "https://github.com/savonet/ocaml-posix/issues" | ||
depends: [ | ||
"dune" {>= "2.9"} | ||
"ocaml-windows" | ||
"ctypes" | ||
"ctypes-windows" | ||
] | ||
build: [ | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
"posix-base" | ||
"-x" | ||
"windows" | ||
"-j" | ||
jobs | ||
"@install" | ||
] | ||
] | ||
dev-repo: "git+https://github.com/savonet/ocaml-posix.git" | ||
url { | ||
src: "https://github.com/savonet/ocaml-posix/archive/main.tar.gz" | ||
} |
33 changes: 33 additions & 0 deletions
33
.github/opam/packages/posix-socket/posix-socket-windows.2.2.0/opam
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: "Bindings for posix sockets" | ||
description: | ||
"posix-socket provides the types and bindings of posix sockets APIs available on both unix and windows." | ||
maintainer: ["[email protected]"] | ||
authors: ["Romain Beauxis"] | ||
license: "MIT" | ||
homepage: "https://github.com/savonet/ocaml-posix" | ||
bug-reports: "https://github.com/savonet/ocaml-posix/issues" | ||
depends: [ | ||
"dune" {>= "2.9"} | ||
"ocaml-windows" | ||
"ctypes" | ||
"ctypes-windows" | ||
] | ||
build: [ | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
"posix-socket" | ||
"-x" | ||
"windows" | ||
"-j" | ||
jobs | ||
"@install" | ||
] | ||
] | ||
dev-repo: "git+https://github.com/savonet/ocaml-posix.git" | ||
url { | ||
src: "https://github.com/savonet/ocaml-posix/archive/main.tar.gz" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# This file is generated by dune, edit dune-project instead | ||
opam-version: "2.0" | ||
synopsis: "Binding for the Secure, Reliable, Transport protocol library" | ||
description: """ | ||
Secure Reliable Transport (SRT) is an open source transport technology | ||
that optimizes streaming performance across unpredictable networks, such | ||
as the Internet. | ||
This package provides OCaml bindings to the C implementation library. | ||
""" | ||
maintainer: ["The Savonet Team <[email protected]>"] | ||
authors: ["The Savonet Team <[email protected]>"] | ||
license: "GPL-2.0-only" | ||
homepage: "https://github.com/savonet/ocaml-srt" | ||
bug-reports: "https://github.com/savonet/ocaml-srt/issues" | ||
depends: [ | ||
"conf-pkg-config" {build} | ||
"dune" {> "2.0"} | ||
"dune-configurator" {build} | ||
"ctypes-foreign-windows" | ||
"integers-windows" | ||
"posix-socket-windows" {>= "2.2.0"} | ||
"posix-socket" | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
"srt" | ||
"-x" | ||
"windows" | ||
"-j" | ||
jobs | ||
"@install" | ||
] | ||
] | ||
depexts: [ | ||
["libsrt"] {os-distribution = "mxe"} | ||
] | ||
url { | ||
src: "https://github.com/savonet/ocaml-srt/archive/main.tar.gz" | ||
} |
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
Oops, something went wrong.