268c95d771
Make state saving optional: this will allow to build SLIRP without QEMU. (eventually, the vmstate helpers will be extracted, so an external project & process could save its state) Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
10 lines
183 B
C
10 lines
183 B
C
#ifndef SLIRP_STATE_H_
|
|
#define SLIRP_STATE_H_
|
|
|
|
#include "libslirp.h"
|
|
|
|
void slirp_state_register(Slirp *slirp);
|
|
void slirp_state_unregister(Slirp *slirp);
|
|
|
|
#endif /* SLIRP_STATE_H_ */
|