diff options
| author | Reiner Herrmann <reiner@reiner-h.de> | 2011-01-29 17:21:16 +0100 |
|---|---|---|
| committer | Reiner Herrmann <reiner@reiner-h.de> | 2011-01-29 17:21:16 +0100 |
| commit | 0c85158f6e149728ad8d7c164c5839856bd655f9 (patch) | |
| tree | dae857b558bb3478513c380003fdf64adc23946a /src/net/comm.c | |
| parent | 8c1d86bf31ab830e53e27def156f9bdb895c3471 (diff) | |
added further net/ documentation (including payload formats)
Diffstat (limited to 'src/net/comm.c')
| -rw-r--r-- | src/net/comm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/comm.c b/src/net/comm.c index 0079a81..2bfacfa 100644 --- a/src/net/comm.c +++ b/src/net/comm.c @@ -10,7 +10,7 @@ /** * Generic receive function.\n * Receives specified message type from socket. Blocks until message is fully received. - * @param[in] Socket on which to receive + * @param[in] sock Socket on which to receive * @param[in] type Message type to receive * @return Indicates success of receiving */ @@ -80,7 +80,7 @@ bool net_recv(const int sock, const msg_type_t type) /** * Generic send function.\n * Transmits specified message type on socket. - * @param[in] Socket on which to send + * @param[in] sock Socket on which to send * @param[in] type Message type to send * @param[in] data Optional pointer to extra data needed by some message types * @return Indicates success of sending |
