diff options
author | Håkon Nessjøen <haakon.nessjoen@gmail.com> | 2010-12-24 01:52:10 +0100 |
---|---|---|
committer | Håkon Nessjøen <haakon.nessjoen@gmail.com> | 2010-12-24 01:52:10 +0100 |
commit | 2d9057c497585c4eb76e5f3ad4f623da56a2e28c (patch) | |
tree | 4f519791995a4d83bdf559a98611d104575e91ff /udp.h | |
parent | dbadc1ab26b3cca6b3697d9c07f284f582dde75d (diff) | |
download | MAC-Telnet-2d9057c497585c4eb76e5f3ad4f623da56a2e28c.tar.gz MAC-Telnet-2d9057c497585c4eb76e5f3ad4f623da56a2e28c.zip |
Changed naming convention on function names
Diffstat (limited to 'udp.h')
-rw-r--r-- | udp.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,4 +1,4 @@ #ifndef _UDP_H #define _UDP_H 1 -extern int sendCustomUDP(const int socket, const int ifindex, const unsigned char *sourcemac, const unsigned char *destmac, const struct in_addr *sourceip, const int sourceport, const struct in_addr *destip, const int destport, const unsigned char *data, const int datalen); +extern int send_custom_udp(const int socket, const int ifindex, const unsigned char *sourcemac, const unsigned char *destmac, const struct in_addr *sourceip, const int sourceport, const struct in_addr *destip, const int destport, const unsigned char *data, const int datalen); #endif |