Home
last modified time | relevance | path

Searched refs:baseport (Results 1 – 2 of 2) sorted by relevance

/qemu/util/
H A Dqemu-sockets.c252 uint64_t baseport; in inet_listen_saddr() local
257 if (parse_uint_full(port, 10, &baseport) < 0) { in inet_listen_saddr()
261 if (baseport > 65535 || in inet_listen_saddr()
262 baseport + port_offset > 65535) { in inet_listen_saddr()
266 snprintf(port, sizeof(port), "%d", (int)baseport + port_offset); in inet_listen_saddr()
/qemu/ui/
H A Dvnc.c3745 uint64_t baseport = 0; in vnc_display_get_address() local
3793 if (parse_uint_full(port, 10, &baseport) < 0) { in vnc_display_get_address()
3797 if (baseport > 65535 || in vnc_display_get_address()
3798 baseport + offset > 65535) { in vnc_display_get_address()
3803 "%d", (int)baseport + offset); in vnc_display_get_address()
3816 ret = baseport; in vnc_display_get_address()