repo.or.cz
/
open-ps2-loader.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Disabling auto-refresh of game list by default, as it is causing bugs sometimes
[open-ps2-loader.git]
/
modules
/
wip
/
lanman
/
inet.h
blob
492e80193e0a9ba8e9f1872a5af1a4db90898f28
1
/*
2
Copyright (c) 2010 jimmikaelkael <jimmikaelkael@wanadoo.fr>
3
Licenced under Academic Free License version 3.0
4
*/
5
6
#ifndef INET_H
7
#define INET_H
8
9
#include <tamtypes.h>
10
11
#include
"ip.h"
12
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
);
21
22
#endif
/* INET_H */