-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
275 additions
and
418 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,18 @@ | ||
namespace RtspMulticaster | ||
{ | ||
using System; | ||
|
||
class Program | ||
{ | ||
private static NLog.Logger _logger = NLog.LogManager.GetCurrentClassLogger(); | ||
|
||
static void Main(string[] args) | ||
{ | ||
_logger.Info("Starting"); | ||
RtspServer monServeur = new RtspServer(8554); | ||
| ||
using RtspMulticaster; | ||
using System; | ||
|
||
monServeur.StartListen(); | ||
RTSPDispatcher.Instance.StartQueue(); | ||
NLog.Logger _logger = NLog.LogManager.GetCurrentClassLogger(); | ||
|
||
while (Console.ReadLine() != "q") | ||
{ | ||
} | ||
_logger.Info("Starting"); | ||
RtspServer monServeur = new(8554); | ||
|
||
monServeur.StopListen(); | ||
RTSPDispatcher.Instance.StopQueue(); | ||
monServeur.StartListen(); | ||
RTSPDispatcher.Instance.StartQueue(); | ||
|
||
|
||
} | ||
} | ||
while (Console.ReadLine() != "q") | ||
{ | ||
} | ||
|
||
monServeur.StopListen(); | ||
RTSPDispatcher.Instance.StopQueue(); |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.