Skip to content

Commit

Permalink
Merge pull request #104 from kronosnet/spelling
Browse files Browse the repository at this point in the history
Spelling fixes
  • Loading branch information
fabbione committed Dec 18, 2017
2 parents 9deffd5 + 04dfa99 commit 0915310
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions libknet/libknet.h
Expand Up @@ -358,9 +358,9 @@ ssize_t knet_send(knet_handle_t knet_h,
* to another host.
* knet_send_sync bypasses the whole TX async layer and delivers
* data directly to the link layer, and returns errors accordingly.
* knet_send_sync allows to send only one packet to one host at
* a time. It does NOT support multiple destinations or multicast
* packets. Decision is still based on dst_host_filter_fn.
* knet_send_sync sends only one packet to one host at a time.
* It does NOT support multiple destinations or multicast packets.
* Decision is still based on dst_host_filter_fn.
*
* @return
* knet_send_sync returns 0 on success and -1 on error.
Expand Down
2 changes: 1 addition & 1 deletion libknet/threads_tx.c
Expand Up @@ -315,7 +315,7 @@ static int _parse_recv_from_sock(knet_handle_t knet_h, size_t inlen, int8_t chan
log_debug(knet_h, KNET_SUB_TX,
"Received data packet but data MTU is still unknown."
" Packet might not be delivered."
" Assuming mininum IPv4 mtu (%d)",
" Assuming minimum IPv4 MTU (%d)",
KNET_PMTUD_MIN_MTU_V4);
temp_data_mtu = KNET_PMTUD_MIN_MTU_V4;
} else {
Expand Down

0 comments on commit 0915310

Please sign in to comment.