2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-31 06:15:24 +00:00

page-server: Convert opts.addr into char *

We'll have --address argument reused for library, so make this
abstract address, not ipv4 one.

Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
This commit is contained in:
Pavel Emelyanov
2013-08-11 12:01:14 +04:00
parent 073af12d5f
commit 7f9302505c
3 changed files with 36 additions and 19 deletions

View File

@@ -40,7 +40,8 @@ struct cr_options {
struct list_head veth_pairs;
struct list_head scripts;
bool use_page_server;
struct sockaddr_in ps_addr;
unsigned short ps_port;
char *addr;
bool track_mem;
char *img_parent;
};