initial commit of Erlang SCCP implementation

This code is my humble attempt to implement the most important
parts of the Q.71x specifcations in Erlang.  The process tree
is trying to model the SCCP reference model as closely as psosible.

The SCRC and SCOC entities are implemented as OTP gen_fsm behavior.

SCLC is not implemented as separate state machine to reduce the number
of processes and message passing between them

SCMC is not implemented at all.

Each MTP (or other transport link) has one SCRC instance and as many
SCOC instances as there are connection-oriented SCCP sessions on this link.

There is no support for Global Title Translation (GTT) as of now.
diff --git a/src/sccp_sclc.erl b/src/sccp_sclc.erl
new file mode 100644
index 0000000..0bbd532
--- /dev/null
+++ b/src/sccp_sclc.erl
@@ -0,0 +1,41 @@
+% SCCP connectionles control (SCLC)
+
+% (C) 2010 by Harald Welte <laforge@gnumonks.org>
+%
+% All Rights Reserved
+%
+% This program is free software; you can redistribute it and/or modify
+% it under the terms of the GNU Affero General Public License as
+% published by the Free Software Foundation; either version 3 of the
+% License, or (at your option) any later version.
+%
+% This program is distributed in the hope that it will be useful,
+% but WITHOUT ANY WARRANTY; without even the implied warranty of
+% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+% GNU General Public License for more details.
+%
+% You should have received a copy of the GNU Affero General Public License
+% along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+-module(sccp_sclc).
+-behaviour(gen_fsm).
+-export([start_link/1]).
+
+
+% TODO: 
+
+start_link(Init) ->
+	gen_fsm:start_link({local, sccp_sclc}, sccp_sclc, Init, []).
+
+init(InitData) ->
+	{ok, idle, {[], InitData}}.
+
+idle(connectionless_msg, 
+%idle(changes_needed, LoopDat) ->
+idle({'N', 'UNITDATA', request, Parms}, LoopDat) ->
+	% assign SLS
+	gen_fsm:send_event(sccp_scrc, connectionless_msg
+	{next_state, idle, LoopDat};
+%idle(scmg_msg, LoopDat) ->
+idle(routing_failure, LoopDat) ->
+