Lyubomir Marinov
379093c845
As stated in the comment of r4992, the fix for issue #552 (7000 threads in 15 minutes during video calls) discovered that the JNICaptureObserver instances leaked. Thus the fix in question started leaking a native thread and a Java thread attached to it for each leaked JNICaptureObserver. This commit fixes the leaking JNICaptureObserver which automatically fixes the leaking threads.
...
Unfortunately, LTI-CIVIL also leaks CaptureStream instances.
17 years ago
Lyubomir Marinov
16f65c1b6d
Minor clean-up to remove unused and unnecessary fields, shorten code, mark fields final and/or private while reviewing the recent commits.
17 years ago
Sebastien Mazy
a77cd8bd78
expand/fold contact group with single click
...
Also make arrow images the same size to prevent the group name from
moving on expand/fold.
17 years ago
Yana Stamcheva
1b6b101560
Fixing "The SecurityPanel is too small and cannot hold the string "Compare with partner", reported by Werner Dittmann
17 years ago
Yana Stamcheva
8605253782
Remove unused SecureVerifyButton.
17 years ago
Sebastien Mazy
97c78e166e
correct a french translation error
17 years ago
Sebastien Mazy
8c7cc9aea1
cosmetics
17 years ago
Sebastien Mazy
d6eee81727
allow non resolvable SIP contacts when SIMPLE presence is on
...
when adding a SIP contact:
- send a SUBSCRIPTION_CREATED event before any network connection. It
doesn't matter whether the contact will be later resolved or not.
- do not send SUBSCRIPTION_RESOLVED event when SIMPLE presence is
disabled (faking a resolved contact altered the meaning of the event
and no consumer is interested in this event for now)
- do not send SUBSCRIPTION_FAILED if an error happens or the other end
does not support presence subscription, so as not to prevent the
contact from being added
17 years ago
Sebastien Mazy
d8fe3531be
Update to JAIN-SIP 1.2.92
17 years ago
Werner Dittmann
752df02671
Fix a small problem displaying "verify" status lock
17 years ago
Yana Stamcheva
e8a3d79547
Fixing the build.
17 years ago
Yana Stamcheva
1170fc80f8
Zrtp Gui and event modifications. (Issue #463 )
17 years ago
Yana Stamcheva
ea303ffd2d
Zrtp Gui and event modifications. (Issue #463 )
17 years ago
Sebastien Mazy
220ec09d41
Patch provided by Martin Harvan: nicknames not fully displayed in tabs
...
https://sip-communicator.dev.java.net/servlets/BrowseList?list=dev&by=thread&from=1575137
17 years ago
Lyubomir Marinov
f180b1b21a
Fixes issue #552 (7000 threads in 15 minutes during video calls). The solution keeps a native thread in JNICaptureObserver alive with a Java thread attached to it and uses it to deliver the captured Image instead of creating a new Java thread for each delivery.
...
Unfortunately, the JNICaptureObserver instances leak - both in the old and the new implementation - and thus the new implementation leaks the mentioned thread being kept alive (and its attached Java thread). The leaking of the JNICaptureObserver instances will be fixed in a subsequent revision (and it will automatically fix the leaked threads) because it's a separate issue (as previously said, affecting the old implementation as well).
17 years ago
Alan Kelly
1246772b96
Minor improvements to display of plugin JPanels on the MainFrame
17 years ago
Symphorien Wanko
56c5d922af
small workaround to make sure the favorite menu will be showed
17 years ago
Damian Minkov
f45bb4b15d
Removing debug print.
17 years ago
Damian Minkov
414cbd90af
cosmetics and remove drop first packet.
17 years ago
Lyubomir Marinov
3f8631ea1a
Uses less indentation, shortens code, corrects a typo, formats the affected code with the official Eclipse formatter in r4986.
17 years ago
Symphorien Wanko
fab727bd3b
small enhancement to the previous patch. the show/hide should not bug when a chat window is opened
17 years ago
Symphorien Wanko
ab92228ce7
work around for the issue 490. the favorite menu is now hidden when the app menu is showed.
17 years ago
Emil Ivov
57059e96ea
Fixes issue #561 "SC does not handle SIP 603 Decline response".
17 years ago
Damian Minkov
ca635fdc8d
Fix msn, problem with server initiated ADL commands and enabling MSN tests again.
17 years ago
Lyubomir Marinov
0f475900c4
Removes unused fields, fixes raw-type warnings.
17 years ago
Lyubomir Marinov
3780cb36d9
Removes unused Logger instances (and thus resolves the warnings about them as well).
17 years ago
Sebastien Mazy
5c2b53d99b
cosmetics
17 years ago
Werner Dittmann
6509c2d40e
Add crypto classes to test properties as well.
17 years ago
Werner Dittmann
a36f77b2e5
Remove classes that are not required anymore (JCE classes).
17 years ago
Werner Dittmann
a0610c62af
Modify build and property file to include the new used bouncycastle classes. Need to
...
cleanup unused classes at a later step.
17 years ago
Werner Dittmann
ded3a87b1f
Modify security relevant code to get rid of Java JCE dependence. This simplifies distribution
...
and istallation of SC - no Sun/Java crypto policy files are required anymore. This check-in
also include a new zrtp4j lib (1.4.3) that implements draft 13 and has no JCE dependency.
17 years ago
Lyubomir Marinov
27e83ca696
Removes unnecessary fields, minor code clean-up in (some of) the files touched in r4974.
17 years ago
Alan Kelly
d438d334d7
Resolve Issue 519 and minor cosmetic changes to NewStatusMessageDialog
17 years ago
Lyubomir Marinov
aba1600a31
Fixes warnings about raw-type use, removes unnecessary fields, marks fields final where possible.
17 years ago
Lyubomir Marinov
ce5a25be06
Fixes a bunch of warnings about raw-type use and serialization.
17 years ago
Lyubomir Marinov
dd5128cadd
Fixes a bunch of warnings about raw-type use and serialization.
17 years ago
Lyubomir Marinov
0761db15a5
Fixes warnings, removes unused fields in the files touched in r4969.
17 years ago
Lyubomir Marinov
4a27a25686
Makes the 'Exit Full Screen' button displayed in the full-screen window (depicting the video in a call) look like the 'Hold' and 'Mute' buttons. It looks a touch differently because it has a roll-over effect and the other two don't (probably becuase it's SIPCommButton and the other two are SIPCommToggleButton) but that's much harder to notice than before when it used to be rendered with a completely different look.
17 years ago
Werner Dittmann
48f991af23
Fix tuhentication problem when roll-over 2^16-1 to 0 again. Sequence of checks now better conform
...
to RFC 3711.
17 years ago
Werner Dittmann
156bd06763
Fix handling of roll-over-counter. Sequence numbers are unsigned short, thus
...
store them as unsigned short (mask with 0xffff). Add missing code to handle
replay checks.
17 years ago
Lyubomir Marinov
32a982afdc
As requested by Emil in an e-mail on the dev mailing list, tries to exit the full-screen window when the call with a participant being displayed in a full-screen window ends.
17 years ago
Lyubomir Marinov
8c46356f53
Reduces allocations caused by Component.getSize() where obviously possible.
17 years ago
Emil Ivov
1c09347eb8
Fixes issue #461 : No call history in dial box
17 years ago
Sebastien Mazy
c2e5c3b8a7
transaction and dialog stateful dispatching of incoming JAIN-SIP events
17 years ago
Damian Minkov
2fdd26fa6c
Fix compiling errors.
17 years ago
Damian Minkov
d0e9b3f649
Update ide settings after lib remove.
17 years ago
Damian Minkov
b453e8f16e
Add linux-64 support for jni h264 codec and remove jna codec.
17 years ago
Damian Minkov
9cd8f4c45a
Fixing GLIBC 2.4 problem on Debian system.
17 years ago
Emil Ivov
ecf9648254
Fixes un-graceful handling of invalid SDP offers and answers(was crashing when receiving an empty zrtp-hash attribute). This include sending an error response when the SDP offer was corrupt and a BYE request when the problem is inside the SDP answer.
...
Fixes impossibility to close the full screen window after a call has been ended remotely.
17 years ago
Emil Ivov
7018f589cb
Make sure that we only add the zrtp-hash attribute if there is one to avoid generating malformed SDP (was causing SC 2 SC calls to fail in my case).
17 years ago