summaryrefslogtreecommitdiff
path: root/csta.erl
blob: c47b78c5e3284c2c5f1508a0f71a7c9bd420d696 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-module(csta).

-export([co_lines/0, ext_lines/0]).

-include("CSTA-escape-service.hrl").

co_lines() ->
	'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}}}}}}}}).