log IP of the client reflector opening stream

This commit is contained in:
narspt 2022-04-02 22:05:28 +01:00 committed by GitHub
parent 4f88437ee8
commit 60f167b339
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -134,7 +134,7 @@ void CController::Task(void)
// crack packet
if ( IsValidOpenstreamPacket(Buffer, &Callsign, &CodecIn, &CodecOut) )
{
std::cout << "Stream Open from " << Callsign << std::endl;
std::cout << "Stream Open from " << Callsign << " at " << Ip << std::endl;
// try create the stream
Stream = OpenStream(Callsign, Ip, CodecIn, CodecOut);