]> sjero.net Git - linphone/blobdiff - java/common/org/linphone/core/LinphoneCore.java
add notifyReceived + refreshRegisters to java api
[linphone] / java / common / org / linphone / core / LinphoneCore.java
index f4bcc7ef8e6b91e2976f554c3cd4bc490333fd2b..6f0ce2c653cc47450f3887b5d1d44e678b5d31c3 100644 (file)
@@ -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();
+
 }