Skip to content

Commit

Permalink
Merge branch 'master' into bugfix/Issue-96
Browse files Browse the repository at this point in the history
  • Loading branch information
tayler6000 committed Jun 7, 2023
2 parents 1f03437 + 0eafe8c commit e490193
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pyVoIP/RTP.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,9 @@ def __init__(

def start(self) -> None:
self.sin = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
self.sout = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
# Some systems just reply to the port they receive from instead of
# listening to the SDP.
self.sout = self.sin
self.sin.bind((self.inIP, self.inPort))
self.sin.setblocking(False)

Expand Down

0 comments on commit e490193

Please sign in to comment.