/external/ipsec-tools/ |
main.c | 108 int tun = open("/dev/tun", 0); local 118 if (ioctl(tun, TUNSETIFF, &ifr)) { 119 do_plog(LLV_ERROR, "Cannot allocate TUN: %s\n", strerror(errno));
|
/external/openssh/ |
auth-options.c | 359 char *tun = NULL; local 361 tun = xmalloc(strlen(opts) + 1); 366 tun[i++] = *opts++; 373 xfree(tun); 377 tun[i] = '\0'; 378 forced_tun_device = a2tun(tun, NULL); 379 xfree(tun); 381 debug("%.100s, line %lu: invalid tun device", 383 auth_debug_add("%.100s, line %lu: invalid tun device", 388 auth_debug_add("Forced tun device: %d", forced_tun_device) [all...] |
misc.c | 250 int tun; local 261 tun = a2tun(sp, NULL); 263 return (*remote == SSH_TUNID_ERR ? *remote : tun); 269 tun = strtonum(s, 0, SSH_TUNID_MAX, &errstr); 273 return (tun); 647 tun_open(int tun, int mode) 650 return (sys_tun_open(tun, mode)); 657 if (tun <= SSH_TUNID_MAX) { 658 snprintf(name, sizeof(name), "/dev/tun%d", tun); [all...] |
serverloop.c | 974 int mode, tun; local 992 tun = packet_get_int(); 994 if (tun != SSH_TUNID_ANY && forced_tun_device != tun) 996 tun = forced_tun_device; 998 sock = tun_open(tun, mode); 1001 c = channel_new("tun", SSH_CHANNEL_OPEN, sock, sock, -1, 1002 CHAN_TCP_WINDOW_DEFAULT, CHAN_TCP_PACKET_DEFAULT, 0, "tun", 1); 1067 } else if (strcmp(ctype, "tun@openssh.com") == 0) { [all...] |
/frameworks/base/services/jni/ |
com_android_server_connectivity_Vpn.cpp | 58 int tun = open("/dev/tun", O_RDWR | O_NONBLOCK); local 65 if (ioctl(tun, TUNSETIFF, &ifr4)) { 66 ALOGE("Cannot allocate TUN: %s", strerror(errno)); 84 return tun; 87 close(tun); 91 static int get_interface_name(char *name, int tun) 94 if (ioctl(tun, TUNGETIFF, &ifr4)) { 327 int tun = create_interface(mtu); local 328 if (tun < 0) [all...] |
/external/libppp/src/ |
ip.c | 79 #include "tun.h" 910 struct tun_data tun; local 915 if (nb > sizeof tun.data) { 917 l->name, nb, (int)(sizeof tun.data)); 921 mbuf_Read(bp, tun.data, nb); 924 if (PacketCheck(bundle, af, tun.data, nb, &bundle->filter.in, 929 if (!FilterCheck(tun.data, af, &bundle->filter.alive, &alivesecs)) { 936 tun.header.family = htonl(af); 937 nb += sizeof tun - sizeof tun.data [all...] |
bundle.c | 90 #include "tun.h" 311 * If it's an LCP and we're in multilink mode, adjust our tun 552 struct tun_data tun; local 558 data = (u_char *)&tun; 559 sz = sizeof tun; 561 data = tun.data; 562 sz = sizeof tun.data; 565 /* something to read from tun */ 574 n -= sz - sizeof tun.data; 580 af = ntohl(tun.header.family) [all...] |
/external/wpa_supplicant_8/src/radius/ |
radius.c | 1339 struct radius_tunnel_attrs tunnel[RADIUS_TUNNEL_TAGS], *tun; local [all...] |
/frameworks/base/services/java/com/android/server/connectivity/ |
Vpn.java | 299 ParcelFileDescriptor tun = ParcelFileDescriptor.adoptFd(jniCreate(config.mtu)); local 302 String interfaze = jniGetName(tun.getFd()); 323 IoUtils.closeQuietly(tun); 342 return tun; 463 private native String jniGetName(int tun); [all...] |