diff options
| author | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-23 07:58:04 +0000 | 
|---|---|---|
| committer | Joe Hershberger <joe.hershberger@ni.com> | 2012-05-23 17:46:00 -0500 | 
| commit | 594c26f8a7dbb83243a5168378a2164fa08d6dd8 (patch) | |
| tree | da2d24d45ee1bb1f9320e023b3a1a24fa25c1d02 /net/ping.h | |
| parent | 8b9c53221f6ce30ad132e3202e6d445bc21ed8aa (diff) | |
| download | olio-uboot-2014.01-594c26f8a7dbb83243a5168378a2164fa08d6dd8.tar.xz olio-uboot-2014.01-594c26f8a7dbb83243a5168378a2164fa08d6dd8.zip | |
net: cosmetic: Un-typedef IP_t
Rename IP header related things to IP_UDP. The existing definition
of IP_t includes UDP header, so name it to accurately describe the
structure.
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'net/ping.h')
| -rw-r--r-- | net/ping.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/net/ping.h b/net/ping.h index 246d3aa10..0a2d7d179 100644 --- a/net/ping.h +++ b/net/ping.h @@ -28,7 +28,7 @@ void ping_start(void);   * @param ip IP header in the same packet   * @param len Packet length   */ -void ping_receive(Ethernet_t *et, IP_t *ip, int len); +void ping_receive(Ethernet_t *et, struct ip_udp_hdr *ip, int len);  #endif /* __PING_H__ */  #endif |