Browse Source

N2O to N4U - description

221V 3 years ago
parent
commit
dd3da0415e

+ 1 - 1
src/endpoints/cowboy/n2o_cowboy.erl

@@ -1,5 +1,5 @@
 -module(n2o_cowboy).
--description('N2O Cowboy Server Bridge to HTTP Server Pages').
+-description('N4U Cowboy Server Bridge to HTTP Server Pages').
 -behaviour(cowboy_http_handler).
 -include_lib("n4u/include/n4u.hrl").
 -export([init/3, handle/2, terminate/3]).

+ 1 - 1
src/endpoints/cowboy/n2o_static.erl

@@ -1,5 +1,5 @@
 -module(n2o_static).
--description('N2O Static Bridge to files in LING image, MAD bundle or OS').
+-description('N4U Static Bridge to files in LING image, MAD bundle or OS').
 -compile([export_all, nowarn_export_all]).
 -include_lib("kernel/include/file.hrl").
 

+ 1 - 1
src/endpoints/cowboy/n2o_stream.erl

@@ -1,5 +1,5 @@
 -module(n2o_stream).
--description('N2O Stream Bridge to WebSocket or XHR channels').
+-description('N4U Stream Bridge to WebSocket or XHR channels').
 -behaviour(cowboy_http_handler).
 -behaviour(cowboy_websocket_handler).
 -export([init/3,handle/2,info/3,terminate/3]).

+ 1 - 1
src/endpoints/n2o_document.erl

@@ -1,5 +1,5 @@
 -module(n2o_document).
--description('N2O Server Pages HTTP endpoint handler').
+-description('N4U Server Pages HTTP endpoint handler').
 -include_lib("n4u/include/n4u.hrl").
 -compile([export_all, nowarn_export_all]).
 

+ 2 - 2
src/endpoints/n2o_proto.erl

@@ -1,5 +1,5 @@
 -module(n2o_proto).
--description('N2O Protocol WebSocket endpoint handler').
+-description('N4U Protocol WebSocket endpoint handler').
 -include_lib("n4u/include/n4u.hrl").
 -compile([export_all, nowarn_export_all]).
 
@@ -24,7 +24,7 @@ init(_Transport, Req, _Opts, _) ->
     Req1 = wf:header(<<"Access-Control-Allow-Origin">>, ConfigOrigin, NewCtx#cx.req),
     {ok, Req1, NewCtx}.
 
-% N2O top level protocol NOP REPLY PUSH
+% N4U top level protocol NOP REPLY PUSH
 
 info(M,R,S)               -> filter(M,R,S,protocols(),[]).
 stream({text,_}=M,R,S)    -> filter(M,R,S,protocols(),[]);

+ 1 - 1
src/endpoints/n2o_relay.erl

@@ -1,5 +1,5 @@
 -module(n2o_relay).
--description('N2O TCP relay endpoint handler').
+-description('N4U TCP relay endpoint handler').
 -compile([export_all, nowarn_export_all]).
 
 connect(IP, PortNo) ->

+ 1 - 1
src/n2o_cx.erl

@@ -1,5 +1,5 @@
 -module(n2o_cx).
--description('N2O Process Context').
+-description('N4U Process Context').
 -include_lib("n4u/include/n4u.hrl").
 -compile([export_all, nowarn_export_all]).