KVM UDP 패치
qemu에서 수정코드 (Language : c)+typedef struct UDPState { + VLANClientState *vc; + int fd; + struct sockaddr_in sender; +} UDPState; + +static void net_udp_send (void *opaque) +{ + UDPState *s = opaque; + uint8_t buf[4096]; + int size; + size = recvfrom(s->fd, buf, sizeof(buf), 0, NULL, NULL); + + if (size > 0) + qemu_send_packet(s->vc, buf, size); +} + +static void net_udp_receive(void *opaque, cons..