summaryrefslogtreecommitdiff
path: root/csta.erl
diff options
context:
space:
mode:
Diffstat (limited to 'csta.erl')
-rw-r--r--csta.erl15
1 files changed, 11 insertions, 4 deletions
diff --git a/csta.erl b/csta.erl
index 57f622a..c47b78c 100644
--- a/csta.erl
+++ b/csta.erl
@@ -1,10 +1,17 @@
-module(csta).
--export([co_lines/0]).
+-export([co_lines/0, ext_lines/0]).
-include("CSTA-escape-service.hrl").
co_lines() ->
- {ok, CO} = kme:co_lines(),
- 'CSTA-escape-service':encode('EscapeArgument',
- #'EscapeArgument'{privateData = CO}).
+ 'CSTA-escape-service':encode('EscapeArgument', #'EscapeArgument'{
+ privateData = {private,
+ {kmeSystemData, {getSystemData, {request, {deviceList,
+ {category, {standardDevice, networkInterface}}}}}}}}).
+
+ext_lines() ->
+ 'CSTA-escape-service':encode('EscapeArgument', #'EscapeArgument'{
+ privateData = {private,
+ {kmeSystemData, {getSystemData, {request, {deviceList,
+ {category, {standardDevice, station}}}}}}}}).