Patch by Charles G Waldman:

1)  Adds MSG_DONTWAIT if defined (I needed this)
2)  Spells "coreectly" correctly ;-)
This commit is contained in:
Guido van Rossum 2000-04-25 21:34:53 +00:00
parent f3335e193b
commit 2c8bcb8794
1 changed files with 4 additions and 1 deletions

View File

@ -524,7 +524,7 @@ BUILD_FUNC_DEF_2(makesockaddr,struct sockaddr *,addr, int,addrlen)
}
#ifdef __BEOS__
/* XXX: BeOS version of accept() doesn't set family coreectly */
/* XXX: BeOS version of accept() doesn't set family correctly */
addr->sa_family = AF_INET;
#endif
@ -2526,6 +2526,9 @@ initsocket()
#ifdef MSG_DONTROUTE
insint(d, "MSG_DONTROUTE", MSG_DONTROUTE);
#endif
#ifdef MSG_DONTWAIT
insint(d, "MSG_DONWAIT", MSG_DONTWAIT);
#endif
#ifdef MSG_EOR
insint(d, "MSG_EOR", MSG_EOR);
#endif