e970946333
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@14761 a95241bf-73f2-0310-859d-f6bbb57e9c96
99 lines
2.2 KiB
C
99 lines
2.2 KiB
C
/* net_misc.h
|
|
* Miscellaneous networking stuff that doesn't yet have a home.
|
|
*/
|
|
|
|
//#ifdef _NETWORK_STACK
|
|
|
|
#ifndef OBOS_NET_MISC_H
|
|
#define OBOS_NET_MISC_H
|
|
|
|
//#include <kernel/OS.h>
|
|
#include <Errors.h>
|
|
#include <mbuf.h>
|
|
|
|
#ifdef _KERNEL_MODE
|
|
#include <KernelExport.h>
|
|
#define printf dprintf
|
|
#endif
|
|
|
|
#ifndef __HAIKU__
|
|
/* Not really sure if this is safe... */
|
|
#define EHOSTDOWN (B_POSIX_ERROR_BASE + 45)
|
|
#endif
|
|
|
|
/* These are GCC only, so we'll need PPC version eventually... */
|
|
struct quehead {
|
|
struct quehead *qh_link;
|
|
struct quehead *qh_rlink;
|
|
};
|
|
|
|
static __inline void insque(void *a, void *b)
|
|
{
|
|
struct quehead *element = (struct quehead *)a,
|
|
*head = (struct quehead *)b;
|
|
|
|
element->qh_link = head->qh_link;
|
|
element->qh_rlink = head;
|
|
head->qh_link = element;
|
|
element->qh_link->qh_rlink = element;
|
|
}
|
|
|
|
static __inline void remque(void *a)
|
|
{
|
|
struct quehead *element = (struct quehead *)a;
|
|
|
|
element->qh_link->qh_rlink = element->qh_rlink;
|
|
element->qh_rlink->qh_link = element->qh_link;
|
|
element->qh_rlink = 0;
|
|
}
|
|
|
|
/* DEBUG Options!
|
|
*
|
|
* Having a single option is sort of lame so I'm going to start adding more here...
|
|
*
|
|
*/
|
|
#define SHOW_DEBUG 0 /* general debugging stuff (verbose!) */
|
|
#define SHOW_ROUTE 0 /* show routing information */
|
|
#define ARP_DEBUG 0 /* show ARP debug info */
|
|
#define USE_DEBUG_MALLOC 0 /* use the debug malloc code*/
|
|
|
|
typedef struct ifnet ifnet;
|
|
|
|
/* ARP lookup return codes... */
|
|
enum {
|
|
ARP_LOOKUP_OK = 1,
|
|
ARP_LOOKUP_QUEUED = 2,
|
|
ARP_LOOKUP_FAILED = 3
|
|
};
|
|
|
|
typedef uint32 ipv4_addr;
|
|
|
|
/* XXX - add some macro's for inserting various types of address
|
|
*/
|
|
|
|
void net_server_add_device(ifnet *ifn);
|
|
//XXX already in netinet/in.h
|
|
//uint16 in_cksum(struct mbuf *m, int len, int off);
|
|
void local_init(void);
|
|
|
|
/* sockets and in_pcb init */
|
|
int sockets_init(void);
|
|
void sockets_shutdown(void);
|
|
int inpcb_init(void);
|
|
|
|
void start_tx_thread(ifnet *dev);
|
|
void start_rx_thread(ifnet *dev);
|
|
|
|
/* Useful debugging functions */
|
|
void dump_ipv4_addr(char *msg, void *ad);
|
|
void print_ipv4_addr(void *ad);
|
|
void dump_ether_addr(char *msg, void *ma);
|
|
void print_ether_addr(void *ea);
|
|
void dump_buffer(char *buffer, int len);
|
|
void dump_sockaddr(void *ptr);
|
|
|
|
#endif /* OBOS_NET_MISC_H */
|
|
|
|
//#endif /* _NETWORK_STACK */
|
|
|