Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
liblinphone
Commits
cf9332d4
Commit
cf9332d4
authored
12 years ago
by
jehan
Browse files
Options
Download
Patches
Plain Diff
add notifyReceived + refreshRegisters to java api
parent
20c23f8b
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
java/common/org/linphone/core/LinphoneCore.java
+8
-0
java/common/org/linphone/core/LinphoneCore.java
java/common/org/linphone/core/LinphoneCoreListener.java
+9
-0
java/common/org/linphone/core/LinphoneCoreListener.java
mediastreamer2
+1
-1
mediastreamer2
oRTP
+1
-1
oRTP
with
19 additions
and
2 deletions
java/common/org/linphone/core/LinphoneCore.java
+
8
−
0
View file @
cf9332d4
...
...
@@ -180,6 +180,9 @@ public interface LinphoneCore {
this
.
tcp
=
t
.
tcp
;
this
.
tls
=
t
.
tls
;
}
public
String
toString
()
{
return
"udp["
+
udp
+
"] tcp["
+
tcp
+
"] tls["
+
tls
+
"]"
;
}
}
/**
* Media (RTP) encryption enum-like.
...
...
@@ -776,4 +779,9 @@ public interface LinphoneCore {
* Set missed calls count to zero
*/
public
void
resetMissedCallsCount
();
/**
* re-initiates registration if network is up.
*/
public
void
refreshRegisters
();
}
This diff is collapsed.
Click to expand it.
java/common/org/linphone/core/LinphoneCoreListener.java
+
9
−
0
View file @
cf9332d4
...
...
@@ -103,5 +103,14 @@ public interface LinphoneCoreListener {
* @param data
*/
void
ecCalibrationStatus
(
LinphoneCore
lc
,
LinphoneCore
.
EcCalibratorStatus
status
,
int
delay_ms
,
Object
data
);
/**
* Report Notified message received for this identity.
* @param lc LinphoneCore
* @param call LinphoneCall in case the notify is part of a dialog, may be null
* @param from LinphoneAddress the message comes from
* @param event String the raw body of the notify event.
*
*/
void
notifyReceived
(
LinphoneCore
lc
,
LinphoneCall
call
,
LinphoneAddress
from
,
byte
[]
event
);
}
This diff is collapsed.
Click to expand it.
mediastreamer2
@
75eb1fcf
Subproject commit
84b9ef050c6abd26446901c2532573f2589a435b
Subproject commit
75eb1fcf8d6097e51bcb507be339dd397c6b4dd5
This diff is collapsed.
Click to expand it.
oRTP
@
41d13b7e
Subproject commit
2590e21d864b43d6ac3a2ece0cf3b4d0e208e866
Subproject commit
41d13b7e491c7fc418987b63ff6ef80c7e8895a4
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets