This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-06/schema#", | |
"id": "http://hl7.org/fhir/json-schema/Observation", | |
"$ref": "#/definitions/Observation", | |
"description": "see http://hl7.org/fhir/json.html#schema for information about the FHIR Json Schemas", | |
"definitions": { | |
"Observation": { | |
"description": "Measurements and simple assertions made about a patient, device or other subject.", | |
"properties": { | |
"resourceType": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Job": { | |
"Region": "global", | |
"ID": "delivery-ru-service", | |
"ParentID": "", | |
"Name": "delivery-ru-service", | |
"Type": "service", | |
"Priority": 50, | |
"AllAtOnce": false, | |
"Datacenters": [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git .version .version | |
index 933dbb1..be8b321 100644 | |
--- .version | |
+++ .version | |
@@ -1 +1 @@ | |
-11.10.0 | |
+11.10.0-x3 | |
diff --git channels/chan_sip.c channels/chan_sip.c | |
index be1274b..c43a68b 100644 | |
--- channels/chan_sip.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: .version | |
=================================================================== | |
--- .version (revision 414969) | |
+++ .version (working copy) | |
@@ -1 +1 @@ | |
-11.10.0 | |
+11.10.0-x2 | |
Index: include/asterisk/rtp_engine.h | |
=================================================================== | |
--- include/asterisk/rtp_engine.h (revision 414969) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git channels/chan_sip.c channels/chan_sip.c | |
index 04c4638..59031fe 100644 | |
--- channels/chan_sip.c | |
+++ channels/chan_sip.c | |
@@ -5884,6 +5884,12 @@ static int dialog_initialize_rtp(struct sip_pvt *dialog) | |
return -1; | |
} | |
+ //Set ice role depending on call direction | |
+ //Later may do the same to other channels too. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Development environment | |
======================= | |
Prefered usage: | |
``` bash | |
sh -c "`curl -fsSL https://raw.github.com/kupishoes/leos.tool/install.sh`" | |
leos init | |
loes clone callcenter | |
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <limits.h> | |
#include <time.h> | |
#define NUMBER 1000000 | |
int main(void) { | |
int *result; | |
result = (int *) malloc(NUMBER*sizeof(int)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Print contents of `tbl`, with indentation. | |
-- `indent` sets the initial level of indentation. | |
function tprint (tbl, indent) | |
if not indent then indent = 0 end | |
for k, v in pairs(tbl) do | |
formatting = string.rep(" ", indent) .. k .. ": " | |
if type(v) == "table" then | |
print(formatting) | |
tprint(v, indent+1) | |
else |