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

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

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

decode(Data) ->
	'CSTA-escape-service':decode('EscapeArgument', Data).

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}}}}}}}}).