-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Guido Lipke
committed
Jun 6, 2017
1 parent
b5da400
commit d82e09d
Showing
24 changed files
with
3,466 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
branches: | ||
only: | ||
- master | ||
|
||
before_install: | ||
script: make | ||
language: cpp | ||
compiler: g++ | ||
|
||
env: | ||
global: | ||
- secure: "mzd3FGdnR6h/HtlGa7LeIlr0ISZwePUHplLk4zSsFcndKG8xFW12pozg1IyiJ8/fbATnQ168R5tVFiu8VwnAdkTAaTJk2kDzg09mooTXhCfFqczJf8G9iuLNjMMS4bEGCasnRD0ZSRMi3Aw82S164bFLlacvT4e6YzjsApa/5tBRpddEiXx2E2fxSSDN2s0oYs8FvwTFrytaD28FhsfV85G5mJSjyRjnH0X9rj1imReOdnBtlGh9AIXX5bwY9uu3sa7TyJ8ljNUwqn3DNaUktsHaXyiVtjuQj6cOOws8TNLlnSBQg+IgDYGmY89NpzEbrCflkjhpzq65/uHS3oEKJWD5yU7RLs5UijniTQVi/IrUoDy+EvbRhtDbdBi9ZHZLqeLgYfQD4Sk30Py3FOW1ORSGgkzpXZTpcQdqM65PtgFTel62t7M+sulpoQ25DE7IhEkUfUcDNuIy4bJI907ugocne5WAPXooNhjgASe6aDdnbzdlK8ulp1NJglo/iEgmVV+Qa9khzNn69Wp6h4SV9nnWz7surTiUdecCqlLO2/DQmHSMNXhNdfELFWdnOyWkLO8EMWtEWZ331Tv42/A8GJrtiZ9owJEy4/Ey3ZG37o20e3GLHvSRbo+fVoMe7zuaFF8+6sduEXR2e+5PhHHgnLFwJZwJuBEfgCr6UL1Gs4w=" | ||
|
||
addons: | ||
coverity_scan: | ||
project: | ||
name: "LipkeGu/BINL-Server" | ||
description: "Build submitted via Travis CI" | ||
notification_email: [email protected] | ||
build_command_prepend: "make" | ||
build_command: "make" | ||
branch_pattern: master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
CXX = g++ | ||
CXXFLAGS = -pthread -pedantic -Wall | ||
all: binlsvc | ||
|
||
binlsvc: clean main.o Client.o Connection.o EventLog.o Packet.o FileSystem.o Functions.o Server.o | ||
$(CXX) $(CXXFLAGS) $(LDFLAGS) Main.o Client.o Connection.o EventLog.o Packet.o Functions.o FileSystem.o Server.o -o binlsvc | ||
|
||
main.o: src/Main.cpp | ||
$(CXX) $(CXXFLAGS) $(LDFLAGS) -c src/Main.cpp | ||
|
||
Client.o: src/Client.cpp | ||
$(CXX) $(CXXFLAGS) -c src/Client.cpp | ||
|
||
Connection.o: src/Connection.cpp | ||
$(CXX) $(CXXFLAGS) -c src/Connection.cpp | ||
|
||
EventLog.o: src/EventLog.cpp | ||
$(CXX) $(CXXFLAGS) -c src/EventLog.cpp | ||
|
||
Packet.o: src/EventLog.cpp | ||
$(CXX) $(CXXFLAGS) -c src/Packet.cpp | ||
|
||
Server.o: src/Server.cpp | ||
$(CXX) $(CXXFLAGS) -c src/Server.cpp | ||
|
||
Functions.o: src/Functions.cpp | ||
$(CXX) $(CXXFLAGS) -c src/Functions.cpp | ||
|
||
FileSystem.o: src/FileSystem.cpp | ||
$(CXX) $(CXXFLAGS) -c src/FileSystem.cpp | ||
|
||
clean: | ||
rm -rf *.o binlsvc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# BINL-Server | ||
|
||
<a href="https://scan.coverity.com/projects/5377"> | ||
<img alt="Coverity Scan Build Status" | ||
src="https://scan.coverity.com/projects/5377/badge.svg"/> | ||
</a> | ||
|
||
<a href="https://travis-ci.org/LipkeGu/BINL-Server"> | ||
<img alt="Coverity Scan Build Status" | ||
src="https://travis-ci.org/LipkeGu/BINL-Server.svg?branch=master"/> | ||
</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
body { | ||
background-color: #000000; | ||
color: #ffffff; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link href="default.css" rel="stylesheet" type="text/css" /> | ||
</head> | ||
<body> | ||
<b>It Works! so far...</b> | ||
</body> | ||
</html> |
Oops, something went wrong.