Home
last modified time | relevance | path

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

/openbmc/qemu/util/
H A Dqemu-sockets.c307 uint64_t baseport; in inet_listen_saddr() local
312 if (parse_uint_full(port, 10, &baseport) < 0) { in inet_listen_saddr()
316 if (baseport > 65535 || in inet_listen_saddr()
317 baseport + port_offset > 65535) { in inet_listen_saddr()
321 snprintf(port, sizeof(port), "%d", (int)baseport + port_offset); in inet_listen_saddr()
/openbmc/qemu/ui/
H A Dvnc.c3801 uint64_t baseport = 0; in vnc_display_get_address()
3849 if (parse_uint_full(port, 10, &baseport) < 0) { in vnc_display_get_address()
3853 if (baseport > 65535 || in vnc_display_get_address()
3854 baseport + offset > 65535) { in vnc_display_get_address()
3859 "%d", (int)baseport + offset); in vnc_display_get_address()
3872 ret = baseport; in vnc_display_get_address()
3800 uint64_t baseport = 0; vnc_display_get_address() local