vhost-user.h 480 B

12345678910111213141516171819
  1. /*
  2. * vhost-user.h
  3. *
  4. * Copyright (c) 2013 Virtual Open Systems Sarl.
  5. *
  6. * This work is licensed under the terms of the GNU GPL, version 2 or later.
  7. * See the COPYING file in the top-level directory.
  8. *
  9. */
  10. #ifndef VHOST_USER_H
  11. #define VHOST_USER_H
  12. struct vhost_net;
  13. struct vhost_net *vhost_user_get_vhost_net(NetClientState *nc);
  14. uint64_t vhost_user_get_acked_features(NetClientState *nc);
  15. void vhost_user_save_acked_features(NetClientState *nc);
  16. #endif /* VHOST_USER_H */