Browse Source

author...

Feng Lee 11 years atrás
parent
commit
e77d25b273

+ 1 - 1
LICENSE

@@ -1,6 +1,6 @@
 The MIT License (MIT)
 
-Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io> 
+Copyright (c) 2014, Feng Lee <feng@slimchat.io> 
 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal

+ 2 - 2
apps/emqtt/include/emqtt.hrl

@@ -1,5 +1,5 @@
 %%------------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal
@@ -23,7 +23,7 @@
 %% ---------------------------------
 %% banner
 %% ---------------------------------
--define(COPYRIGHT, "Copyright (C) 2014, Feng Lee<feng.lee@slimchat.io>").
+-define(COPYRIGHT, "Copyright (C) 2014, Feng Lee<feng@slimchat.io>").
 
 -define(LICENSE_MESSAGE, "Licensed under MIT"). 
 

+ 1 - 1
apps/emqtt/include/emqtt_log.hrl

@@ -1,5 +1,5 @@
 %%-----------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal

+ 1 - 1
apps/emqtt/include/emqtt_topic.hrl

@@ -1,5 +1,5 @@
 %%-----------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal

+ 1 - 1
apps/emqtt/src/emqtt.erl

@@ -1,5 +1,5 @@
 %%-----------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal

+ 2 - 2
apps/emqtt/src/emqtt_app.erl

@@ -1,5 +1,5 @@
 %%-----------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
 
 -module(emqtt_app).
 
--author('ery.lee@gmail.com').
+-author('feng@slimchat.io').
 
 -include("emqtt_log.hrl").
 

+ 2 - 2
apps/emqtt/src/emqtt_auth.erl

@@ -1,5 +1,5 @@
 %%-----------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
 
 -module(emqtt_auth).
 
--author('feng.lee@slimchat.io').
+-author('feng@slimchat.io').
 
 -include("emqtt.hrl").
 

+ 2 - 2
apps/emqtt/src/emqtt_auth_anonymous.erl

@@ -1,5 +1,5 @@
 %%-----------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal
@@ -22,7 +22,7 @@
 
 -module(emqtt_auth_anonymous).
 
--author('feng.lee@slimchat.io').
+-author('feng@slimchat.io').
 
 -export([init/1,
 		add/2,

+ 3 - 1
apps/emqtt/src/emqtt_auth_internal.erl

@@ -1,5 +1,5 @@
 %%-----------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal
@@ -22,6 +22,8 @@
 
 -module(emqtt_auth_internal).
 
+-author('feng@slimchat.io').
+
 -include("emqtt.hrl").
 
 -export([init/1,

+ 3 - 1
apps/emqtt/src/emqtt_client.erl

@@ -1,5 +1,5 @@
 %%-----------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal
@@ -22,6 +22,8 @@
 
 -module(emqtt_client).
 
+-author('feng@slimchat.io').
+
 -behaviour(gen_server).
 
 -export([start_link/1, info/1, go/2, stop/2]).

+ 2 - 2
apps/emqtt/src/emqtt_cm.erl

@@ -1,5 +1,5 @@
 %%-----------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal
@@ -23,7 +23,7 @@
 %client manager
 -module(emqtt_cm).
 
--author('feng.lee@slimchat.io').
+-author('feng@slimchat.io').
 
 -behaviour(gen_server).
 

+ 3 - 1
apps/emqtt/src/emqtt_ctl.erl

@@ -1,5 +1,5 @@
 %%-----------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal
@@ -22,6 +22,8 @@
 
 -module(emqtt_ctl).
 
+-author('feng@slimchat.io').
+
 -include("emqtt.hrl").
 
 -include("emqtt_log.hrl").

+ 3 - 1
apps/emqtt/src/emqtt_db.erl

@@ -1,5 +1,5 @@
 %%-----------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal
@@ -22,6 +22,8 @@
 
 -module(emqtt_db).
 
+-author('feng@slimchat.io').
+
 -export([init/0, stop/0]).
 
 init() ->

+ 1 - 1
apps/emqtt/src/emqtt_frame.erl

@@ -1,5 +1,5 @@
 %%------------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal

+ 1 - 1
apps/emqtt/src/emqtt_http.erl

@@ -1,5 +1,5 @@
 %%------------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal

+ 1 - 1
apps/emqtt/src/emqtt_keep_alive.erl

@@ -1,5 +1,5 @@
 %%-----------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal

+ 1 - 1
apps/emqtt/src/emqtt_monitor.erl

@@ -1,5 +1,5 @@
 %%-----------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal

+ 1 - 1
apps/emqtt/src/emqtt_net.erl

@@ -1,5 +1,5 @@
 %%-----------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal

+ 1 - 1
apps/emqtt/src/emqtt_pubsub.erl

@@ -1,5 +1,5 @@
 %%-----------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal

+ 1 - 1
apps/emqtt/src/emqtt_retained.erl

@@ -1,5 +1,5 @@
 %%-----------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal

+ 1 - 1
apps/emqtt/src/emqtt_sup.erl

@@ -1,5 +1,5 @@
 %%-----------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal

+ 1 - 1
apps/emqtt/src/emqtt_topic.erl

@@ -1,5 +1,5 @@
 %%-----------------------------------------------------------------------------
-%% Copyright (c) 2014, Feng Lee <feng.lee@slimchat.io>
+%% Copyright (c) 2014, Feng Lee <feng@slimchat.io>
 %% 
 %% Permission is hereby granted, free of charge, to any person obtaining a copy
 %% of this software and associated documentation files (the "Software"), to deal