[LineEndings] Add lineendings patch again

This commit is contained in:
momo5502 2017-01-20 14:36:13 +01:00
parent 4997e042b6
commit 76fd8a65f5
3 changed files with 625 additions and 624 deletions

View File

@ -1,3 +1,4 @@
*.hpp eol=crlf *.hpp eol=crlf
*.cpp eol=crlf *.cpp eol=crlf
*.lua eol=crlf *.lua eol=crlf
*.proto eol=crlf

File diff suppressed because it is too large Load Diff

View File

@ -1,18 +1,18 @@
syntax = "proto3"; syntax = "proto3";
package Proto.Auth; package Proto.Auth;
message Certificate message Certificate
{ {
bytes privatekey = 1; bytes privatekey = 1;
bytes token = 2; bytes token = 2;
bytes ctoken = 3; bytes ctoken = 3;
} }
message Connect message Connect
{ {
bytes signature = 1; bytes signature = 1;
bytes publickey = 2; bytes publickey = 2;
bytes token = 3; bytes token = 3;
bytes infostring = 4; bytes infostring = 4;
} }