On Fri, Feb 22, 2019 at 5:33 PM Joe Touch <touch@xxxxxxxxxxxxxx> wrote:
You could just add “Unix” or “Unix-like” to before “connect”, or refer to these calls as “bind()” and “connect()”.It is important that these are the semantics of Unix-like sockets; other APIs may not have a corresponding mechanism. Further, the UDP source address might change later (i.e., in TCP the “connect” always forces a static source IP address selected at the initiation of the TCP connection; in UDP, there’s no need for this to happen only once at the time the “connect()” is issued.
Sounds good.