mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
79aa715514
Added crypto to the DHT communications. This defeats completely the first attack mentioned in docs/DHT_hardening. Also updated the build system to build the latest test (it links it with libsodium)
27 lines
414 B
YAML
27 lines
414 B
YAML
language: c
|
|
compiler:
|
|
- gcc
|
|
|
|
before_script:
|
|
- git clone git://github.com/jedisct1/libsodium.git
|
|
- cd libsodium
|
|
- ./autogen.sh
|
|
- ./configure && make check
|
|
- sudo make install
|
|
- sudo ldconfig
|
|
- cd ..
|
|
|
|
script:
|
|
- cmake CMakeLists.txt
|
|
- make -j3
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
irc:
|
|
channels:
|
|
- "chat.freenode.net#InsertProjectNameHere"
|
|
on_success: always
|
|
on_failure: always
|
|
|