Don't document IP type specific output functions, users should use IP type independent ones

This commit is contained in:
Dirk Ziegelmeier
2016-08-07 10:13:50 +02:00
parent 8d07629b71
commit 980a919c9a
3 changed files with 4 additions and 11 deletions

View File

@@ -778,7 +778,6 @@ ip6_input_cleanup:
/**
* @ingroup ip6
* Sends an IPv6 packet on a network interface. This function constructs
* the IPv6 header. If the source IPv6 address is NULL, the IPv6 "ANY" address is
* used as source (usually during network startup). If the source IPv6 address it
@@ -823,7 +822,6 @@ ip6_output_if(struct pbuf *p, const ip6_addr_t *src, const ip6_addr_t *dest,
}
/**
* @ingroup ip6
* Same as ip6_output_if() but 'src' address is not replaced by netif address
* when it is 'any'.
*/
@@ -907,7 +905,6 @@ ip6_output_if_src(struct pbuf *p, const ip6_addr_t *src, const ip6_addr_t *dest,
}
/**
* @ingroup ip6
* Simple interface to ip6_output_if. It finds the outgoing network
* interface and calls upon ip6_output_if to do the actual work.
*