Cleanup in elf.c with .bss section clean; adm command mounts cdrom instead of floppy...
[ZeXOS.git] / apps / im / src / net.h
blob70eecb55fb8da1b8e593c546b124fb6e65296a53
1 /*
2 * ZeX/OS
3 * Copyright (C) 2008 Tomas 'ZeXx86' Jedrzejek (zexx86@zexos.org)
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #ifndef _NET_H
21 #define _NET_H
23 #include "platform.h"
25 #include <netinet/in.h>
26 #include <sys/socket.h>
28 #ifdef __linux__
29 #include <errno.h>
30 #include <arpa/inet.h>
31 #include <sys/types.h>
32 #endif
34 #define NET_BUFFER_SIZE 2048
36 typedef struct {
37 struct sockaddr_in conn;
38 int sock;
39 char *buffer;
40 } net_t;
42 extern int net_send (char *data, unsigned len);
43 extern int net_switchmode ();
44 extern int net_loop ();
45 extern int init_net ();
47 #endif