summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-03-30TCP server now sends/handles ping packets.irungentoo
2014-03-29TCP server now has onion functionality.irungentoo
All the IP/Port related structs now have __attribute__ ((__packed__))
2014-03-28TCP server almost ready.irungentoo
2014-03-27Merge pull request #818 from maksqwe/rtp_header_fixirungentoo
fix RTPHeader filling by zeros underflow
2014-03-28fix RTPHeader filling by zeros underflowMaks Naumov
regression from 6a78e2e71c1471b89646a71a1adeb0529cfb73d4
2014-03-26TCP server testing in progress.irungentoo
2014-03-25Basic TCP server stuff should be all done, started testing it.irungentoo
2014-03-24A bit more work on TCP server.irungentoo
I'm going to start working more diligently on this tommorow, the last week hasn't really been productive.
2014-03-23Merge pull request #817 from mannol1/masterirungentoo
Fixed cancel and added handling of the glare case
2014-03-23Remove headermannol
2014-03-23Why do it even caremannol
2014-03-23Merge pull request #815 from jin-eld/nacl-fix-3irungentoo
More NaCl related fixes
2014-03-23Fix NaCl builds for *BSDJin^eLD
From what I see there is a difference between *BSD and Linux when linking vs. toxcore which has been bulit vs. the NaCl library: on Linux it only links if NaCl's object files (i.e. randombytes.o) is present in the linker options, however on *BSD systems this will cause a linking error, see: https://github.com/Tox/toxic/issues/31#issuecomment-38224441 This commit makes sure that we do not add the NaCl object files to our pkg-config settings on *BSD, but do add them on Linux.
2014-03-23Fix shared/static settings when building vs. NaCl libraryJin^eLD
Make sure the shared lib build is really disabled when compiling vs. NaCl: moved settings before libtool initialization fixed parameter name
2014-03-22Some work on TCP server done.irungentoo
2014-03-22Clare case fixmannol
Wot fix
2014-03-22Well this seems to be workingmannol
2014-03-21Friends client id is now removed from the request received list when he is ↵irungentoo
deleted.
2014-03-20Fixed other api inconsistency.irungentoo
2014-03-20Fixed an api inconsistency.irungentoo
2014-03-19A bit more code written for TCP servers.irungentoo
2014-03-18Fixed issue where other could send a bad userstatus.irungentoo
2014-03-18nTox fixes.irungentoo
Added TOX_MAX_MESSAGE_LENGTH to tox.h
2014-03-18Fixed warning.irungentoo
2014-03-18Merge branch 'api-fix'irungentoo
Main changes: 1. Strings no longer need to be NULL terminated. 2. tox_get_friend_id is now named tox_get_friend_number. 3. The friend request callback function is now (Tox *tox, uint8_t *, uint8_t *, uint16_t, void *), the Tox object pointer has been added to it.
2014-03-18Merge pull request #809 from jin-eld/fix-shared-lib-buildsirungentoo
Fix regression that disabled shared library builds
2014-03-18Merge pull request #808 from jin-eld/fix-nacl-2irungentoo
Tell pkg-config when tox core is built vs. nacl
2014-03-18Fix regression that disabled shared library buildsJin^eLD
My previous attempt that was supposed to disable shared library builds with nacl had a side effect which basically disabled shared libs for all configurations. Eventhough AC_DISABLE_SHARED was used inside an if clause it seemed to take over in any case. I could not find a clean way around this, so had to override internal libtool variables. Will check with the libtool people regarding a cleaner implementation.
2014-03-18Tell pkg-config when tox core is built vs. naclJin^eLD
This is required so that applications using tox core do not fail to link when core is built vs. the nacl library.
2014-03-17Merge pull request #807 from jin-eld/fix-nacl-buildsirungentoo
Disabled shared lib when building vs. nacl library
2014-03-18Disabled shared lib when building vs. nacl libraryJin^eLD
2014-03-17Merge pull request #802 from JFreegman/masterirungentoo
add api function that gets the last time a friend was seen online (also ...
2014-03-16Renamed toping to to_ping.irungentoo
2014-03-16Friend request callback now contains the Tox object.irungentoo
2014-03-16retain old data file friendlists on loadJfreegman
2014-03-16add api function that gets the last time a friend was seen onlineJfreegman
2014-03-15A bit of work done on the TCP relay server.irungentoo
2014-03-14Merge branch 'master' of https://github.com/mannol1/ProjectTox-Core into ↵irungentoo
mouseym-patch-3
2014-03-14Merge branch 'udp_test_fixes' of https://github.com/kc1212/ProjectTox-Core ↵irungentoo
into mouseym-patch-3
2014-03-15Comment fixmannol
2014-03-14Added new callbackmannol
2014-03-14Add Qt-GuiDavid Lohle
2014-03-14Organize the ReadmeDavid Lohle
2014-03-14A bit of work done on the TCP relay server.irungentoo
2014-03-13Slightly more work done on the TCP relay server.irungentoo
2014-03-13Fixed bug, unconfirmed friends now load correctly.irungentoo
2014-03-12Started writing the code for the TCP relay server.irungentoo
2014-03-12updated compilation and execution instructions for Lossless UDP tests, and ↵Kelong Cong
fixed minor typos
2014-03-11Detailed docs for TCP server pretty much done.irungentoo
Implementation coming soon.
2014-03-11Merge pull request #798 from mannol1/masterirungentoo
Fixed segfault, timeout handling and logging.