chore: Removes useless comments.

These comments were useless and provided no value. They weren't
even funny.
This commit is contained in:
greysoh 2024-10-19 16:45:41 -04:00
parent c6c407d205
commit 5c8ba3ff37
Signed by: imterah
GPG key ID: 8FA7DD57BA6CEA37

View file

@ -175,9 +175,6 @@ func (bismuth BismuthServer) HandleProxy(conn net.Conn) error {
serverState = "APITransmit" serverState = "APITransmit"
} }
} else if serverState == "APITransmit" { } else if serverState == "APITransmit" {
// Currently the API is in a skeleton-like state, so the API is a bit of a no-op right now.
// Fuck you Stari.
packetSizeByteArr := make([]byte, 3) packetSizeByteArr := make([]byte, 3)
if _, err := conn.Read(packetSizeByteArr); err != nil { if _, err := conn.Read(packetSizeByteArr); err != nil {
@ -209,7 +206,6 @@ func (bismuth BismuthServer) HandleProxy(conn net.Conn) error {
return err return err
} }
// Fuck it, we ball
if packet[0] == core.InitiateForwarding { if packet[0] == core.InitiateForwarding {
bmConn := core.BismuthConn{ bmConn := core.BismuthConn{
Aead: aead, Aead: aead,