aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Net
AgeCommit message (Collapse)Author
2023-11-30Move SocketFactory to Jellyfin.NetworkingPatrick Barron
2023-11-15Remove DLNA socket codePatrick Barron
2023-10-12Merge branch 'master' into fix-resharper-warningsStepan Goremykin
# Conflicts: # Emby.Server.Implementations/Net/SocketFactory.cs # RSSDP/SsdpCommunicationsServer.cs # RSSDP/SsdpDeviceLocator.cs # RSSDP/SsdpDevicePublisher.cs
2023-10-11Refactor URI overrides (#10051)Tim Eisele
2023-10-08Remove conditional access when it is known to be not nullStepan Goremykin
2023-10-07Remove redundant castStepan Goremykin
2023-02-17Fix interface address assignment and resolution in SSDPShadowghost
2023-02-17Replace ISocket and UdpSocket, fix DLNA and SSDP binding and discoveryShadowghost
2023-01-19Apply review suggestionsShadowghost
2022-12-13Apply review suggestionsShadowghost
2022-12-07Merge branch 'master' into network-rewriteShadowghost
2022-12-05Replace != null with is not nullBond_009
2022-10-07Merge branch 'master' into network-rewriteShadowghost
2022-10-06Use ArgumentNullException.ThrowIfNull helper methodBond_009
Did a simple search/replace on the whole repo (except the RSSDP project) This reduces LOC and should improve performance (methods containing a throw statement don't get inlined) ``` if \((\w+) == null\) \s+\{ \s+throw new ArgumentNullException\((.*)\); \s+\} ``` ``` ArgumentNullException.ThrowIfNull($1); ```
2022-10-01Merge branch 'master' into network-rewriteShadowghost
2022-09-11Don't allow throwing System.Exception (#8378)Bond-009
2022-07-21Enforce interface bindings on SSDP, add Loopback to LAN if no LAN definedShadowghost
2022-03-10ExclusiveAddressUse: cheated by the docsBond_009
2022-03-08SocketFactory: Remove redundant codeBond_009
ExclusiveAddressUse should be false by default afaik
2022-01-22Always create TaskCompletionSource<T> with ↵Bond_009
TaskCreationOptions.RunContinuationsAsynchronously
2021-12-27More cleanupBond_009
2021-10-03Fix warnings in UdpSocketPatrick Barron
2021-09-03Fix some warningsBond_009
2021-05-20Enable nullable reference types for Emby.Server.ImplementationsBond_009
2020-07-24Fix warningsBond_009
2020-06-24Sending multicasts out of Sockets without setting the broadcast to true - ↵BaronGreenback
causes the error "Bad value for ai_flags" on some systems (#3404) The underlying cause looks to be https://github.com/dotnet/runtime/issues/28630. Basically, it's an access denied bug. It looks like multicasts need the same access rights as broadcasts on some systems.
2020-06-24Removed debugging infoBaronGreenback
2020-06-24Added logging and broadcast = trueBaronGreenback
Not intended for merge into the fork.
2020-06-20fix SA1503 for one line if statementstelans
2020-06-15fix SA1508telans
2020-06-15fix SA1005telans
2020-05-29Enable TreatWarningsAsErrors for Jellyfin.Server.Implementations in Release modeBond_009
2020-05-02Fix merge errorsBond_009
2020-05-02Merge branch 'master' into websocketBond_009
2020-01-31Fix warningsBond_009
2020-01-13Rewrite WebSocket handling codeBond_009
2020-01-12Clean up server discovery codeBond-009
2019-08-28Attempt to fix #1391Bond_009
2019-08-09Use System.Net abstractions instead of raw socketBond_009
2019-07-29Include library via NuGet instead of via sourceBond_009
2019-07-25Remove IpAddressInfo and IpEndPointInfo classesBond_009
2019-03-13Improvements around streamsBond-009
* Use ArrayPool instead of allocating new buffers each time * Remove NetworkStream copy * Remove some dead code
2019-02-27Remove more cruft and add the beginnings of a socket middlewareClaus Vium
2019-02-27Replace some usage of QueryParamCollectionClaus Vium
2019-02-26Still brokenClaus Vium
2019-01-20Replaced injections of ILogger with ILoggerFactoryWilliam Taylor
This makes resolving dependencies from the container much easier as you cannot resolve with primitives parameters in a way that is any more readable. The aim of this commit is to change as little as possible with the end result, loggers that were newed up for the parent object were given the same name. Objects that used the base or app loggers, were given a new logger with an appropriate name. Also removed some unused dependencies.
2019-01-13ReSharper conform to 'var' settingsErwin de Haan
2019-01-13Find+Sed BOM removal *.cs: BDInfo-Emby.XmlTvErwin de Haan
2019-01-13Visual Studio Reformat: Emby.Server.Implementations Part Liv-PErwin de Haan
2019-01-11Merge branch 'dev' into code-cleanupErwin de Haan