summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-04-16multiple spelling fixesCarlos E. Garcia
2014-04-15Merge branch 'master' of https://github.com/tycho/ProjectTox-Core into ↵irungentoo
tycho-master
2014-04-14Added function to TCP client and some tests.irungentoo
2014-04-13media.h: include 'opus.h' instead of 'opus/opus.h'Steven Noonan
The current 'opus/opus.h' works if your opus.h is in /usr/include/opus, as /usr/include is already in the header search path. If your opus header search path is found via pkg-config, however, you will get something like this: $ pkg-config --cflags opus -I/usr/local/Cellar/opus/1.1/include/opus Since this is pointing directly to include/opus, the 'opus/' prefix on the header include directive will break. Since 'opus.h' should work in both cases (as in both cases it will be discovered via pkg-config), just use the simpler 'opus.h'. Signed-off-by: Steven Noonan <steven@uplinklabs.net>
2014-04-13toxav/Makefile.inc: add LIBSODIUM_* variables to flagsSteven Noonan
These are needed if libsodium paths are discovered by 'configure'. Most systems don't need this just because libsodium is already on the header/library search paths, but on e.g. Mac OS X this is required. Signed-off-by: Steven Noonan <steven@uplinklabs.net>
2014-04-13TCP_client pretty much done?irungentoo
Now next step is integrating it in tox. Added TCP server functionality to bootstrap server (define TCP_RELAY_ENABLED to enable it.)
2014-04-13sockets: support Mac OS X way of disabling SIGPIPE on a socketSteven Noonan
Mac OS X doesn't have MSG_NOSIGNAL, so we need to use SO_NOSIGPIPE. Signed-off-by: Steven Noonan <steven@uplinklabs.net>
2014-04-12Pings and onion packets implemented in TCP_Client.cirungentoo
Astyled one test and added a couple lines to another.
2014-04-11Some code written for the TCP part.irungentoo
2014-04-10Added TCP test to build system.irungentoo
2014-04-09Merge branch 'avfix' of https://github.com/aitjcize/ProjectTox-Core into ↵irungentoo
aitjcize-avfix
2014-04-09whitespace fix & proper use of "i.e.,"Carlos E. Garcia
2014-04-10Fix memory leak.AZ Huang
2014-04-09Fix phone.cAZ Huang
2014-04-08Merge branch 'openbsd' of https://github.com/czarkoff/ProjectTox-Core into ↵irungentoo
czarkoff-openbsd
2014-04-08Add /usr/local/{include,lib} to search paths on OpenBSDDmitrij D. Czarkoff
2014-04-08Drop typedef redeclarationsDmitrij D. Czarkoff
C99 doesn't permit redeclaring typedefs in the same scope.
2014-04-08Include 'netinet/in_systm.h' on OpenBSDDmitrij D. Czarkoff
Otherwise 'n_time' is undefined.
2014-04-07Merge branch 'master' of https://github.com/mannol1/ProjectTox-Core into ↵irungentoo
mannol1-master
2014-04-07Bug fixmannol
2014-04-06Added TCP_client.irungentoo
Some work done on the TCP part.
2014-04-06Merge branch 'master' of https://github.com/mannol1/ProjectTox-Core into ↵irungentoo
mannol1-master
2014-04-06Codec settingsmannol
2014-04-05Astyled test.irungentoo
2014-04-05Rename suitemannol
2014-04-05Added testmannol
2014-04-04Added functions to get/set the nospam value to the public api.irungentoo
2014-04-03Maximum name lengths should now be the real maximum and not one byte less.irungentoo
2014-04-02Some code cleanups.irungentoo
2014-04-01Fixed bug where TOX_FAERR_SETNEWNOSPAM would be returned instead ofirungentoo
TOX_FAERR_ALREADYSENT when re adding a confirmed friend.
2014-03-31tox_group_get_names now returns a list of name lengths along with the list ↵irungentoo
of names. TCP test now also tests pings.
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