Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

libslirp-devel-4.9.1+1-1.1 RPM for x86_64

From OpenSuSE Tumbleweed for x86_64

Name: libslirp-devel Distribution: openSUSE Tumbleweed
Version: 4.9.1+1 Vendor: openSUSE
Release: 1.1 Build date: Mon Jun 9 09:50:06 2025
Group: Development/Libraries/C and C++ Build host: reproducible
Size: 16429 Source RPM: libslirp-4.9.1+1-1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://gitlab.freedesktop.org/slirp/libslirp
Summary: Development files for libslirp
The libslirp-devel package contains libraries and header files for
developing applications that use libslirp.

Provides

Requires

License

MIT

Changelog

* Mon Jun 09 2025 Madhankumar Chellamuthu <madhankumar.chellamuthu@suse.com>
  - Update to version 4.9.1+1:
    * Mention how to get debugging prints
    * Release v4.9.1
    * tcp: Fix starting the linger2 timer on socket shutdown
    * tcp: Reduce linger time to two minutes
    * tcp: on input during init, reset TCPT_KEEP to TCPTV_KEEP_INIT
    * tcp: on input, reset TCPT_KEEP to TCPTV_KEEP_IDLE rather than TCPTV_KEEPINTVL
    * Modified util.c to handle WSA function return values closer to specification. Explicit checks for INVALID_SOCKET and SOCKET_ERROR are made.
    * apple: Fix getting IPv4 DNS server address when IPv4 and IPv4 are interleaved
    * Do not link tests with libslirp.map
* Mon Feb 10 2025 pgajdos@suse.com
  - Update to version 4.9.0+5:
    * meson: add dependency override for libslirp
    * meson: specify that C++ is only used for host binaries
    * meson: use boolean defaults for boolean options
    * Release v4.9.0
    * Windows target build fixes
    * Fix assertion
    * Provide stubs for inet_ntop() and inet_pton()
    * winver.h: Introduce header that forces defining WINVER and _WIN32_WINNT
    * ensure that WINVER and _WIN32_WINNT are unconditionally set
    * sbuf.c: Cleanups
    * fix for slirp ftp proxying putting slirp placeholder host ip in PORT commands
    * Prefer g_strerror() to strerror()
    * vmstate.h: Prefer __typeof__ vice typeof
    * Review comments.
    * cksum: NetBSD-adapted cksum()
    * Introduce SLIRP_PRIsize/ssize_t
    * arp_table: use size_t to index arrays.
    * Debugging API
    * slirp_(un)register_poll_socket: void returning value
    * Restore SlirpAddPollCb, {,un}register_poll_fd
    * Fix calling slirp_bind_outbound on tcp_fconnect
    * fuzz: Fix memory leak inside fuzz-main
    * socket abstraction: slirp_os_socket
    * tcp_listen: Missing register_poll_fd
    * bootp: Fill siaddr with tftp addr as per RFC2131
    * windows: allow static linking with LIBSLIRP_STATIC macro
* Tue May 21 2024 pgajdos@suse.com
  - Update to version 4.8.0+2:
    * Fix actually linking the library
    * Use simpler test linker script for detectiong --version-script option
    * Release v4.8.0
    * Explicit that -Dstatic=True is not meant for distributing a static library
    * icmp6: Add echo request forwarding support
    * fuzz: Fix icmp6 matching and checksum computation
    * fuzz: Drop debugging
    * fuzz: Drop debugging
    * fuzz: Add ARP and NDP cases
    * fuzz: Add IPv6 cases
    * mbuf: Do not reallocate when the requested size already fits exactly
    * mbuf: Fix copying headers
    * oss-fuzz: Fix udp-h and tcp-h corpuses
    * fuzz: comment coherency
    * fuzz: Simplify TCP checksum code
    * Note changes that can probably be security issues
    * Add changelog for next release
    * eth: pad ethernet frames to 60 bytes
    * udp: Make cleanup loop clearer
    * fuzz: Fix tftp fuzz actually receiving a file
    * tftp: cleanup sessions remaining at slirp shutdown
    * tftp: Fix use-after-free
    * Add fuzzing CI
    * fuzz: Add ip filtering
    * tcp: hack syn/ack
    * fuzzing: Increase coverage
    * First attempt at fuzzing with libFuzzer based on @elmarco work
    * Start some fuzzing test
    * tcp: Fix testing for last fragment
    * icmp: Fix msg duplication for debugging
    * tcp: Fix allocating room
    * mbuf: Be extra careful with freed pointer
    * mbuf: remove '#define if*' member accessors
    * m_cleanup_list: Fix missing cleanup packets from the same session
    * tcp-input: inline TCP_REASS
    * ip: remove second argument from ip_stripoptions()
    * Document endianness of slirp_add_hostfwd parameters
* Wed Dec 13 2023 lnussel@suse.com
  - Update to version 4.7.0+60:
    * Avoid including <sys/param.h> on windows
    * Document functions
    * icmp: Handle ICMP packets as IPPROTO_IP on BSD
    * ip: Enforce strict aliasing
    * Fix including BaseTsd.h on mingw
    * Use SSIZE_T from BaseTsd.h on windows
    * Detach UDP socket if errno is ENOTCONN (Socket is not connected)
    * slirp: use localhost as dns when /etc/resolv.conf empty
    * missing semicolon
    * Drop unused UDP_UDPDATALEN macro
    * Reject domain-search when any entry ends with ".."
    * Use target address from Neighbor Advertisement
  - removed libslirp-semicolon.patch, now included
* Fri Nov 11 2022 pgajdos@suse.com
  - added patches
    fix https://gitlab.freedesktop.org/slirp/libslirp/-/issues/64
    + libslirp-semicolon.patch
* Mon Jul 18 2022 Fabian Vogt <fvogt@suse.com>
  - Update to version 4.7.0+44 (current git master):
    * Fix vmstate regression
    * msvc: use char* for pointer arithmetic
    * Align outgoing packets
    * Bump incoming packet alignment to 8 bytes
    * msvc: fix some gcc-specific pragma warnings
    * msvc: enable vmstate code on !gnuc
    * vmstate: only enable when building under GNU C
    * ncsitest: Fix build with msvc
    * Avoid running git-version-gen when building with MS VC
    * windows: export symbols
    * win32: replace strcasecmp with g_ascii_strcasecmp
    * Drop spurious inline
    * Avoid returning void
    * Fix arithmetic on void *
    * Avoid using ##__VA_ARGS__ gcc extension
    * Fix bitfields order for MSVC
    * Separate out SLIRP_PACKED to SLIRP_PACKED_BEGIN/END
    * Do not use ssize_t on Windows
    * Do not include unistd.h on windows, it does not have it
    * Accept build-aux/git-version-gen failing to run
    * container_of: avoid using __extension__
    * ncsi: Add Mellanox Get Mac Address handler
    * slirp: Add out-of-band ethernet address
    * ncsi: Add OEM command handler
    * ncsi: Add basic test for Get Version ID response
    * ncsi: Use response header for payload length
    * ncsi: Pass command header to response handlers
    * src/slirp.h: Bump the minimum Windows version to Windows 7
    * ncsi: Add Get Version ID command
    * ncsi: Pass Slirp structure to response handlers
    * slirp: Add manufacturer's ID
    * Add support for Haiku to meson.build
    * meson: add extra warnings
    * win32: declare some local functions as static
    * Include <sys/socket.h> and <arpa/inet.h> for AF_INET6 and inet_pton
    * Release v4.7.0
    * bump ABI version and age
    * slirp: invoke client callback before creating timers
    * pingtest: port to timer_new_opaque
    * introduce timer_new_opaque callback
    * introduce slirp_timer_new wrapper
    * icmp6: make ndp_send_ra static
    * Add sanitizers CI runs
    * socket: Handle ECONNABORTED from recv
    * bootp: fix g_str_has_prefix warning/critical
    * slirp: Don't duplicate packet in tcp_reass
    * Rename insque/remque -> slirp_[ins|rem]que
    * mbuf: Use SLIRP_DEBUG to enable mbuf debugging instead of DEBUG
    * Replace inet_ntoa() with safer inet_ntop()
    * Add VMS_END marker
    * bootp: add support for UEFI HTTP boot
    * IPv6 DNS proxying support
    * Add missing scope_id in caching
    * Drop fixed TODO
    * socket: Move closesocket(so->s_aux) to sofree
    * socket: Check so_type instead of so_tcpcb for Unix-to-inet translation
    * socket: Add s_aux field to struct socket for storing auxilliary socket
    * socket: Initialize so_type in socreate
    * socket: Allocate Unix-to-TCP hostfwd port from OS by binding to port 0
    * Allow to disable internal DHCP server
    * slirp_pollfds_fill: Explain why dividing so_snd.sb_datalen by two
    * CI: run integration tests with slirp4netns
    * socket: Check address family for Unix-to-inet accept translation
    * socket: Add debug args for tcpx_listen (inet and Unix sockets)
    * socket: Restore original definition of fhost
    * socket: Move <sys/un.h> include to socket.h
    * Support Unix sockets in hostfwd
    * resolv: fix IPv6 resolution on Darwin
    * Use the exact sockaddr size in getnameinfo call
    * Initialize sin6_scope_id to zero
    * slirp_socketpair_with_oob: Connect pair through 127.0.0.1
    * resolv: fix memory leak when using libresolv
    * pingtest: Add a trivial ping test
    * icmp: Support falling back on trying a SOCK_RAW socket
* Thu Jul 22 2021 Fabian Vogt <fvogt@suse.com>
  - Update to version 4.6.1+7:
    * Haiku: proper path to resolv.conf for DNS server
    * Fix for Haiku
    * dhcp: Always send DHCP_OPT_LEN bytes in options
  - Commit _servicedata to fix changelogs
  - Don't include .git in source archive, not needed
  - Run set_version together with obs_scm
* Wed Jul 21 2021 mrostecki@suse.com
  - Update to version 4.6.1:
    * Release v4.6.1
    * Fix "DHCP broken in libslirp v4.6.0"
  - fixes [bsc#1198773]
* Fri Jul 16 2021 novell@tower-net.de
  - Update to version 4.6.0:
    * build-sys: forgot to bump version to 4.6.0
    * changelog: post-release
    * Release v4.6.0
    * udp: check upd_input buffer size
    * tftp: introduce a header structure
    * tftp: check tftp_input buffer size
    * upd6: check udp6_input buffer size
    * bootp: check bootp_input buffer size
    * bootp: limit vendor-specific area to input packet memory buffer
    * Revert "Set macOS deployment target to macOS 10.4"
  - fixes CVE-2021-3592 [bsc#1187364], CVE-2021-3593 [bsc#1187365],
      CVE-2021-3594 [bsc#1187367],CVE-2021-3595[bsc#1187366]
* Fri Jan 08 2021 rbrown@suse.com
  - Update to version 4.4.0:
    * Release v4.4.0
    * socket: consume empty packets
    * slirp: check pkt_len before reading protocol header
    * Remove the QEMU-special make build-system
    * Add DNS resolving for iOS
    * meson: support compiling as subproject
    * meson: remove meson-dist script
    * Add G_GNUC_PRINTF to local function slirp_vsnprintf
    * sosendoob: better document what urgc is used for
    * .gitlab-ci: add a Coverity stage
    * TCPIPHDR_DELTA: Fix potential negative value
    * udp, udp6, icmp, icmp6: Enable forwarding errors on Linux
    * icmp, icmp6: Add icmp_forward_error and icmp6_forward_error
    * udp, udp6, icmp: handle TTL value
    * ip_stripoptions use memmove
    * changelog: post-release
  - fixes [bsc#1201551]

Files

/usr/include/slirp
/usr/include/slirp/libslirp-version.h
/usr/include/slirp/libslirp.h
/usr/lib64/libslirp.so
/usr/lib64/pkgconfig/slirp.pc


Generated by rpm2html 1.8.1

Fabrice Bellet, Thu Jun 19 00:48:54 2025