| * Copyright (c) 1995 Danny Gasparovski. |
| * Please read the file COPYRIGHT for the |
| * terms and conditions of the copyright. |
| extern int slirp_socket_unit; |
| extern int slirp_socket_port; |
| extern uint32_t slirp_socket_addr; |
| extern char *slirp_socket_passwd; |
| * Get the difference in 2 times from updtim() |
| * Allow for wraparound times, "just in case" |
| * x is the greater of the 2 (current time) and y is |
| * what it's being compared against. |
| #define TIME_DIFF(x,y) (x)-(y) < 0 ? ~0-(y)+(x) : (x)-(y) |
| extern struct in_addr loopback_addr; |
| extern unsigned long loopback_mask; |
| extern char *socket_path; |
| extern int tcp_keepintvl; |
| int if_encap(Slirp *slirp, struct mbuf *ifm); |
| ssize_t slirp_send(struct socket *so, const void *buf, size_t len, int flags); |