summaryrefslogtreecommitdiff
path: root/toxcore/ping_array.c
AgeCommit message (Collapse)Author
2014-07-06Update ping_array.ckyle condon
Change calloc call on line 138 from empty_array->entries = calloc(size * sizeof(Ping_Array_Entry), 1);, to empty_array->entries = calloc(size, sizeof(Ping_Array_Entry));
2014-06-10Const correctness in various interdependent filesMarc Schütz
2014-05-12Fixed segfault.irungentoo
2014-05-12Added ping_array, a special efficient array for use in operationsirungentoo
that require sending ping type packets. Made ping packets use it.