Searched defs:tun_header (Results 1 - 3 of 3) sorted by relevance

/external/android-clat/
H A Dclatd.c388 struct tun_pi *tun_header = (struct tun_pi *) buf; local
389 uint16_t proto = ntohs(tun_header->proto);
395 if(tun_header->flags != 0) {
396 logmsg(ANDROID_LOG_WARN, "%s: unexpected flags = %d", __func__, tun_header->flags);
H A Dtranslate.c108 * tun_header - tunnel header, already allocated
111 void fill_tun_header(struct tun_pi *tun_header, uint16_t proto) { argument
112 tun_header->flags = 0;
113 tun_header->proto = htons(proto);
H A Dclatd_test.cpp435 struct tun_pi tun_header = { 0, 0 }; local
446 tun_header.proto = htons(ETH_P_IP);
452 tun_header.proto = htons(ETH_P_IPV6);

Completed in 382 milliseconds