mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-21 18:01:15 +00:00
Doc tweaks and some whitespace.
This commit is contained in:
parent
76f894a29f
commit
eba66b1dde
2 changed files with 6 additions and 3 deletions
|
@ -113,7 +113,8 @@ struct qsockaddr {
|
|||
|
||||
|
||||
/** Connect Reply:
|
||||
\arg \b long \c port
|
||||
\arg \b long \c port The port which the client is to use for further
|
||||
communication.
|
||||
*/
|
||||
#define CCREP_ACCEPT 0x81
|
||||
|
||||
|
|
|
@ -1269,8 +1269,10 @@ _Datagram_Connect (const char *host)
|
|||
if (ret > 0) {
|
||||
// is it from the right place?
|
||||
if (sfunc.AddrCompare (&readaddr, &sendaddr) != 0) {
|
||||
Sys_MaskPrintf (SYS_NET, "%s ", sfunc.AddrToString (&readaddr));
|
||||
Sys_MaskPrintf (SYS_NET, "%s\n", sfunc.AddrToString (&sendaddr));
|
||||
Sys_MaskPrintf (SYS_NET, "%s ",
|
||||
sfunc.AddrToString (&readaddr));
|
||||
Sys_MaskPrintf (SYS_NET, "%s\n",
|
||||
sfunc.AddrToString (&sendaddr));
|
||||
ret = 0;
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue