mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-27 07:59:20 +00:00
Add Transport constructor.
This commit is contained in:
parent
6dc58d3363
commit
c6149d1f4e
1 changed files with 7 additions and 0 deletions
|
|
@ -172,6 +172,13 @@ public interface LinphoneCore {
|
|||
public int udp;
|
||||
public int tcp;
|
||||
public int tls;
|
||||
|
||||
public Transports() {};
|
||||
public Transports(Transports t) {
|
||||
this.udp = t.udp;
|
||||
this.tcp = t.tcp;
|
||||
this.tls = t.tls;
|
||||
}
|
||||
}
|
||||
/**
|
||||
* EC Calibrator Status
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue