Richard Fuchs
594297a3ea
use string chunk for all the little call-related strings
14 years ago
Richard Fuchs
afb1f5de95
need to lock the call a bit earlier
14 years ago
Richard Fuchs
d8ef1885cc
split callstream_init into callstream_new for redis module
14 years ago
Richard Fuchs
c291d1220b
fix logging inconsistency
14 years ago
Richard Fuchs
72840c8d1d
reorder calls to redis for proper locking
14 years ago
Richard Fuchs
d20d747a63
since xmlrpc is still segfaulting even in its own process, disable core dumps in the child and retry the xmlrpc call up to 3 times if the child terminates abnormally. jumping through hoops ftw!
14 years ago
Richard Fuchs
2ad1d6f65e
xmlrpc still segfaulting. leaves no choice but to fork out a new process, ugh.
14 years ago
Richard Fuchs
f4833f6b74
xmlrpc calls still causing segfaults, lets try with a dedicated client object per call... i'm starting to dislike this library
14 years ago
Richard Fuchs
fabcb53a3b
the curl xmlrpc transport isnt playing nicely - revert to default
14 years ago
Richard Fuchs
08c764c748
cant decref null references
14 years ago
Richard Fuchs
0f6d898171
add proper locking to callstream setup procedure
14 years ago
Richard Fuchs
94f2f320a6
actually the call struct needs neither linked flag nor shutdown flag due to the sequence of events and locking
14 years ago
Richard Fuchs
d8776907f8
need to lock the callstream a bit earlier
14 years ago
Richard Fuchs
ab3b8c60f0
fix a silly, threading-unrelated, statistics-skewing bug
14 years ago
Richard Fuchs
45f34b9784
turns out you actually have to free/destroy mutexes. who woulda thunk?
14 years ago
Richard Fuchs
54353022ff
om nom nom memory leak... well, reference count leak
14 years ago
Richard Fuchs
b7a68659b1
analoguous to the last race, call_destroy() must not assume that it's getting the last reference to the call
14 years ago
Richard Fuchs
ddffe5eeec
global xmlrpc init must be done prior to any threading
14 years ago
Richard Fuchs
d1fbf9bef9
alarms arent usable in a threaded environment, so use curl internal timeout instead
14 years ago
Richard Fuchs
feeeee2fab
must extract needed tags for xmlrpc call teardown prior to destroying the calls
14 years ago
Richard Fuchs
973d92d9c7
moving call teardown due to timeout to a separate thread
14 years ago
Richard Fuchs
2dd6cfe68c
keeping the lock hold time to a minimum in lengthy calls_status operation
14 years ago
Richard Fuchs
8c2c69f5e6
make the stats collection thread-safe
14 years ago
Richard Fuchs
d9e09f33bc
lets try with a lot of large, nested, naive locks
14 years ago
Richard Fuchs
ae5a36f5ce
getting rid of call->log_info and introducing call->lock
14 years ago
Richard Fuchs
900f76a17e
make the callmaster struct private - also requires update to redis module
14 years ago
Richard Fuchs
aeb5398b0d
granular lock for "ports used" bit field
14 years ago
Richard Fuchs
a8680cc2d9
TOS for ipv6 needs an int to work
14 years ago
Richard Fuchs
0b0b41e67f
gonna need more than one lock in callmaster, so rename the one we have
14 years ago
Richard Fuchs
4588e13a76
getting rid of more global variables
14 years ago
Richard Fuchs
e033d1da1c
EINTR requires special handling
14 years ago
Richard Fuchs
db15692f21
using thread-local-storage for eliminating constant calls to time()
14 years ago
Richard Fuchs
5f5e158d76
private structs make for safer threading
14 years ago
Richard Fuchs
ebd2893e96
missing a streambuf lock here
14 years ago
Richard Fuchs
7dc00bd258
making timers thread-safe
14 years ago
Richard Fuchs
de33b8da40
add basic locking to callmaster struct
14 years ago
Richard Fuchs
8e5ad59558
make the obj_ primitives more liberal to make for easier calling
14 years ago
Richard Fuchs
145bbd1f7c
Prepare for multi-threaded operation
Introduce generic "objects" with reference counting primitives and automatic
resource deallocation when no refs are left ("garbage collection"). Overhaul
poller framework to make extensive use of these objects to allow for future
thread-concurrent operation.
No locking added anywhere yet except in poller. Poller is still not 100%
thread safe, but close.
Valgrind reports no errors or memleaks.
14 years ago
Richard Fuchs
2594da3b45
dont poll kernel list when table couldnt be opened
14 years ago
Richard Fuchs
8d50923508
good bye poll(), hello epoll_*()
14 years ago
Richard Fuchs
2a8c07df0e
take rtcp ports into account when checking for timeouts
14 years ago
Richard Fuchs
70ac6a274c
take 0-byte packets into consideration when updating peer info for NAT'd streams
14 years ago
Richard Fuchs
24cf5a0ca0
dump packet stats upon call teardown
14 years ago
Richard Fuchs
b6650a9d78
increase max udp packet len to 8192 and add warning message if the limit is hit
14 years ago
Richard Fuchs
e4575cf31f
who knew that zero-length udp packets are valid?
14 years ago
Richard Fuchs
33b7872115
be a bit more clear in the read error message
14 years ago
Richard Fuchs
35404af428
log error code upon RTP socket error
14 years ago
Richard Fuchs
dc7517121d
remove uuid helper code
14 years ago