Disabling auto-refresh of game list by default, as it is causing bugs sometimes
[open-ps2-loader.git] / modules / wip / lanman / inet.h
blob492e80193e0a9ba8e9f1872a5af1a4db90898f28
1 /*
2 Copyright (c) 2010 jimmikaelkael <jimmikaelkael@wanadoo.fr>
3 Licenced under Academic Free License version 3.0
4 */
6 #ifndef INET_H
7 #define INET_H
9 #include <tamtypes.h>
11 #include "ip.h"
13 u16 htons(u16);
14 u16 ntohs(u16);
15 u32 htonl(u32);
16 u32 ntohl(u32);
17 u32 htona(u8 *);
18 u32 ntoha(u8 *);
19 u16 inet_chksum(ip_hdr_t *, u16);
20 u16 inet_chksum_pseudo(void *, u32 *, u32 *, u16);
22 #endif /* INET_H */