mirror of
https://github.com/TokTok/c-toxcore
synced 2026-03-31 02:45:39 +00:00
This release focuses on hardening, architectural refinement, and better testing capabilities. On the Hardening front, the ToxAV module has undergone significant security improvements. We have addressed a heap buffer overflow in RTP packet handling and fixed several logic bugs in the bandwidth controller and audio modules that could affect stability. Architectural Refactoring continues with the internalization of core system dependencies. The system clock, random number generation, and memory management are now accessed through abstract interfaces, further decoupling the core from OS-specific implementations and making the codebase more portable and testable.
15 lines
486 B
Docker
15 lines
486 B
Docker
FROM toxchat/pkgsrc:latest
|
|
|
|
WORKDIR /work
|
|
COPY . /work/c-toxcore-0.2.22
|
|
RUN ["tar", "zcf", "c-toxcore.tar.gz", "c-toxcore-0.2.22"]
|
|
|
|
WORKDIR /work/pkgsrc
|
|
COPY other/docker/pkgsrc/pkgsrc.patch /tmp/pkgsrc.patch
|
|
RUN ["patch", "-p1", "-i", "/tmp/pkgsrc.patch"]
|
|
|
|
WORKDIR /work/pkgsrc/chat/toxcore
|
|
RUN ["bmake", "clean"]
|
|
RUN ["bmake", "DISTFILES=c-toxcore.tar.gz", "DISTDIR=/work", "NO_CHECKSUM=yes"]
|
|
RUN ["bmake", "DISTFILES=c-toxcore.tar.gz", "DISTDIR=/work", "NO_CHECKSUM=yes", "install"]
|