const tunnel_ops *ops; /* Pointer to operations */
sel_file f; /* Selector for TUN/TAP device */
struct peer *p; /* Pointer to my peer */
- char ifn[IFNAMSIZ]; /* Interface name buffer */
};
/* --- @t_read@ --- *
n = read(fd, buf_i, sizeof(buf_i));
if (n < 0) {
- a_warn("TUN", "%s", t->ifn, "read-error", "?ERRNO", A_END);
+ a_warn("TUN", "%s", p_ifname(t->p), "read-error", "?ERRNO", A_END);
return;
}
IF_TRACING(T_TUNNEL, {
/* --- @t_create@ --- *
*
* Arguments: @peer *p@ = pointer to peer block
+ * @char **ifn@ = where to put the interface name
*
* Returns: A tunnel block if it worked, or null on failure.
*
* Use: Initializes a new tunnel.
*/
-static tunnel *t_create(peer *p)
+static tunnel *t_create(peer *p, char **ifn)
{
int fd;
int f;
sel_initfile(&sel, &t->f, fd, SEL_READ, t_read, t);
sel_addfile(&t->f);
iff.ifr_name[IFNAMSIZ - 1] = 0;
- strcpy(t->ifn, iff.ifr_name);
+ *ifn = xstrdup(iff.ifr_name);
T( trace(T_TUNNEL, "tun-linux: attached interface %s to peer `%s'",
- t->ifn, p_name(p)); )
+ *ifn, p_name(p)); )
return (t);
}
-/* --- @t_ifname@ --- *
- *
- * Arguments: @tunnel *t@ = pointer to tunnel block
- *
- * Returns: A pointer to the tunnel's interface name.
- */
-
-static const char *t_ifname(tunnel *t) { return (t->ifn); }
-
/* --- @t_inject@ --- *
*
* Arguments: @tunnel *t@ = pointer to tunnel block
"linux",
t_init,
t_create,
- t_ifname,
+ 0,
t_inject,
t_destroy
};