diff options
author | Ingela Anderton Andin <[email protected]> | 2014-02-27 14:48:59 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2014-03-25 15:48:22 +0100 |
commit | c635f15d22802f7ff18fd1ce9197b2cc760979ef (patch) | |
tree | 2f4ff0c4b570f5049d614fd076cf50cee5320f78 /lib/ssl/src/dtls_connection_sup.erl | |
parent | 8ffbf0feccb375afc10ce676070b6b778e9bf260 (diff) | |
download | otp-c635f15d22802f7ff18fd1ce9197b2cc760979ef.tar.gz otp-c635f15d22802f7ff18fd1ce9197b2cc760979ef.tar.bz2 otp-c635f15d22802f7ff18fd1ce9197b2cc760979ef.zip |
ssl: Refactor and start implementing dtls_connection.erl
Diffstat (limited to 'lib/ssl/src/dtls_connection_sup.erl')
-rw-r--r-- | lib/ssl/src/dtls_connection_sup.erl | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/lib/ssl/src/dtls_connection_sup.erl b/lib/ssl/src/dtls_connection_sup.erl index 9fe545be18..0b4711cfb4 100644 --- a/lib/ssl/src/dtls_connection_sup.erl +++ b/lib/ssl/src/dtls_connection_sup.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2007-2013. All Rights Reserved. +%% Copyright Ericsson AB 2007-2014. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -26,8 +26,8 @@ -behaviour(supervisor). %% API --export([start_link/0]). --export([start_child/1]). +-export([start_link/0, start_link_dist/0]). +-export([start_child/1, start_child_dist/1]). %% Supervisor callback -export([init/1]). @@ -38,8 +38,14 @@ start_link() -> supervisor:start_link({local, ?MODULE}, ?MODULE, []). +start_link_dist() -> + supervisor:start_link({local, dtls_connection_sup_dist}, ?MODULE, []). + start_child(Args) -> supervisor:start_child(?MODULE, Args). + +start_child_dist(Args) -> + supervisor:start_child(dtls_connection_sup_dist, Args). %%%========================================================================= %%% Supervisor callback |