1 #ifndef KVM__VIRTIO_NET_H 2 #define KVM__VIRTIO_NET_H 3 4 struct kvm; 5 6 struct virtio_net_parameters { 7 struct kvm *self; 8 const char *host_ip; 9 }; 10 11 void virtio_net__init(const struct virtio_net_parameters *params); 12 13 #endif /* KVM__VIRTIO_NET_H */ 14