Skip to content

Commit

Permalink
(ignore) Changed a warning comment because #17 is not a bug anymore s…
Browse files Browse the repository at this point in the history
…ince the mumble packet is well formed within BasicMumbleProtocol's EncodingThread.
  • Loading branch information
Meetsch committed Feb 21, 2020
1 parent 3a35b5f commit 6b61b63
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions MumbleSharp/MumbleConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,8 @@ public void SendControl<T>(PacketType type, T packet)

public void SendVoice(ArraySegment<byte> packet)
{
//This is *totally wrong*
//the packet contains raw encoded voice data, but we need to put it into the proper packet format
//UPD: packet prepare before this method called. See basic protocol
//The packet must be a well formed Mumble packet as described in https://mumble-protocol.readthedocs.org/en/latest/voice_data.html#packet-format
//The packet is created in BasicMumbleProtocol's EncodingThread

_tcp.SendVoice(PacketType.UDPTunnel, packet);
}
Expand Down

0 comments on commit 6b61b63

Please sign in to comment.