LibXenon
Bare-metal Xbox 360 homebrew library
Loading...
Searching...
No Matches
network.h
Go to the documentation of this file.
1#ifndef __include_network_h
2#define __include_network_h
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8#include <lwip/netif.h>
9#include <lwip/dhcp.h>
10
11#define NETWORK_INIT_SUCCESS 0
12#define NETWORK_INIT_DHCP_FAILURE 1
13#define NETWORK_INIT_FAILURE -1
14
15int network_init();
16void network_poll();
18
19extern struct netif netif;
20
21#ifdef __cplusplus
22}
23#endif
24
25#endif
int network_init()
Definition: network.c:34
void network_poll()
Definition: network.c:95
void network_print_config()
Definition: network.c:122
Definition: netif.h:136