Skip to content

Commit

Permalink
Initial Version
Browse files Browse the repository at this point in the history
  • Loading branch information
Guido Lipke committed Jun 6, 2017
1 parent b5da400 commit d82e09d
Show file tree
Hide file tree
Showing 24 changed files with 3,466 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .travis.yml
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
674 changes: 674 additions & 0 deletions COPYING

Large diffs are not rendered by default.

33 changes: 33 additions & 0 deletions Makefile
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
11 changes: 11 additions & 0 deletions README.md
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>
4 changes: 4 additions & 0 deletions http/default.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
body {
background-color: #000000;
color: #ffffff;
}
10 changes: 10 additions & 0 deletions http/index.html
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>
Loading

0 comments on commit d82e09d

Please sign in to comment.