Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-02-19 | Merge branch 'new_api' of https://github.com/dubslow/toxcore into new_api | irungentoo | |
2015-02-19 | Typing and status functions implemented. | irungentoo | |
2015-02-18 | Put const adjective before type nouns | Dubslow | |
(Done with two applications of "sed -i -r "s/(\\w+) const\\b/const \\1/g" toxcore/tox.*" ) Conflicts: toxcore/tox.c | |||
2015-02-18 | use bool in is typing callback. | irungentoo | |
2015-02-18 | Apparently enums are bad for wrappers and doing this makes wrapping | irungentoo | |
toxcore easier. | |||
2015-02-17 | More new api functions implemented. | irungentoo | |
Some small self explainatory changes to the api. | |||
2015-02-17 | Updated types in Messenger callbacks to fit with the ones in the new api. | irungentoo | |
Friend number changed from int32_t to uint32_t. Some lengths changed to size_t. | |||
2015-02-17 | Fixed friend_not_valid function. | irungentoo | |
It now returns if friend is valid or not not only if memory location is valid. | |||
2015-02-17 | Messenger add friends functions error code fixes. | irungentoo | |
Removed unknown error. norequest function now returns proper error codes. | |||
2015-02-16 | More new api work done. | irungentoo | |
m_copy_self_statusmessage no longer takes a buffer length argument. | |||
2015-02-16 | Allow empty names and status messages. | irungentoo | |
2015-02-15 | New api progress. | irungentoo | |
2015-02-14 | Code cleanups. | irungentoo | |
2015-02-14 | A bit of new api work done. | irungentoo | |
2015-02-13 | Started implementing new Tox api. | irungentoo | |
2015-02-12 | Code Cleanups. | irungentoo | |
2015-02-11 | Code Cleanups. | irungentoo | |
2015-02-11 | Code cleanups. | irungentoo | |
2015-02-09 | Code Cleanups. | irungentoo | |
2015-02-09 | Code Cleanups. | irungentoo | |
2015-02-09 | Code cleanups. | irungentoo | |
2015-02-09 | Code cleanups. | irungentoo | |
2015-02-07 | Only create one global logger instance. | irungentoo | |
2015-02-07 | kill_TCP_server() now frees everything in TCP server. | irungentoo | |
2015-02-06 | Fixed memory leak. | irungentoo | |
2015-02-06 | Fix memory leaks. | irungentoo | |
2015-02-05 | Lowered CPU usage. | irungentoo | |
Check if onion data will be sent before encrypting it, not after. | |||
2015-01-31 | Fixed bug where mutex would be destroyed but not recreated for new | irungentoo | |
net_crypto connection. Only destroy mutex when it is realloced out. | |||
2015-01-30 | Prevent unnecessary sending of packets. | irungentoo | |
If name/status/typing didn't actually change return success and don't actually do anything. | |||
2015-01-29 | Api break. | irungentoo | |
TOX_CLIENT_ID_SIZE renamed to TOX_PUBLIC_KEY_SIZE. Renamed client_id to public_ke in public api. | |||
2015-01-29 | Code cleanups. | irungentoo | |
Rename array in Node_format from client_id to public_key. | |||
2015-01-28 | Code cleanups. | irungentoo | |
2015-01-27 | client_id is a bad name for the long term public key. | irungentoo | |
2015-01-26 | Code cleanup. | irungentoo | |
2015-01-23 | Code cleanups. | irungentoo | |
Remove duplicate addfriend code and shoved it in its own function. | |||
2015-01-22 | Zero broadcast ips are invalid. | irungentoo | |
2015-01-21 | Code cleanups. | irungentoo | |
2015-01-20 | Fixed gcc warnings. | irungentoo | |
2015-01-19 | Fixed gcc warnings. | irungentoo | |
2015-01-18 | Merge branch 'win_log' of https://github.com/MovingtoMars/toxcore | irungentoo | |
2015-01-17 | Attempted fix of Tox disconnecting during file transfers by tweaking | irungentoo | |
some congestion control numbers. | |||
2015-01-18 | Add 2015 to copyright notice | MovingtoMars | |
2015-01-18 | Fix logging on Windows | MovingtoMars | |
2015-01-17 | Fixed logger build issue. | irungentoo | |
2015-01-17 | fix_logger-v.0.2 | mannol | |
2015-01-16 | Tox should work better on TCP only when some people have broken TCP | irungentoo | |
nodes and don't update them. Paths now try to use the same TCP node for their entire lifetime. | |||
2015-01-14 | Don't enforce limits on pings for LAN ips. | irungentoo | |
2015-01-13 | Fix TCP server regression. | irungentoo | |
onion.c was parsing recieved packets a bit too strictly and discarding packets that had ips with non valid families. TCP uses a non valid family to send back the packet to the proper connected node. | |||
2015-01-12 | Attempted fix of Tox killing routers part 2. | irungentoo | |
Reduced drastically the number of ips the DHT pings by only pinging nodes that would be included in one of the close lists. | |||
2015-01-12 | Fixed Windows build | Maxim Biro | |
Apparently ERROR was defined as some constant somewhere on Windows. |