text stringlengths 9 39.2M | dir stringlengths 26 295 | lang stringclasses 185
values | created_date timestamp[us] | updated_date timestamp[us] | repo_name stringlengths 1 97 | repo_full_name stringlengths 7 106 | star int64 1k 183k | len_tokens int64 1 13.8M |
|---|---|---|---|---|---|---|---|---|
```css
.feedback-div, .feedback-btn, .update-btn {
display: inline-block;
}
@keyframes rotating {
from {
transform: rotate(0deg);
}
to {
transform: rotate(-360deg);
}
}
.rotating {
animation: rotating 2s linear infinite;
}
``` | /content/code_sandbox/app/src/app/feedback/feedback.component.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 65 |
```css
.request-div {
/*border-left: 1px solid #ddd;*/
/*border-right: 1px solid #ddd;*/
/*border-top: 1px solid #ddd;*/
display: flex;
flex-direction: row;
margin-top: 10px;
margin-bottom: 10px;
padding-top: 10px;
position: relative;
animation: from-top 0.8s ease 1;
}
@keyframes from-top {
0% {t... | /content/code_sandbox/app/src/app/request/request.component.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 624 |
```html
<div class="feedback-div">
<div class="feedback-btn clickable tooltip" (click)="wantFeedback()">
<i class="icon-mail"></i>
<span class="tooltiptext" i18n>An issue, an idea?</span>
</div>
<div class="update-btn" (click)="installUpdate()" *ngIf="updateAvailable" [ngClass]="{'clickable': (updateDownl... | /content/code_sandbox/app/src/app/feedback/feedback.component.html | html | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 241 |
```html
<div class="help-div-arrow">
<div class="arrow thisarrow"></div>
</div>
<div class="help-div-title" i18n>Enter:</div>
<div class="help-div-container">
<div class="help-div-possibility">
<div class="possibility-title" i18n>Songs</div>
<ul>
<li *ngFor="let proposal of helpProposalsSongs" (click)... | /content/code_sandbox/app/src/app/help/help.component.html | html | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 215 |
```css
.help-div-title {
text-align: center;
width: 65px;
margin: 0 auto;
margin-top: 60px;
padding: 3px;
text-transform: uppercase;
color: #ff8a65;
font-weight: bold;
border-bottom: 1px solid white;
border-top: 1px solid #ff8a65;
}
.help-div-container {
display: flex;
flex-direction: row;
}
.he... | /content/code_sandbox/app/src/app/help/help.component.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 628 |
```css
.suggestion {
padding: 8px;
cursor: pointer;
background-color: #1a1a1a;
color: white;
font-weight: 200;
font-size: 14px;
}
.suggestion--active {
background-color: #222;
}
.suggestion:hover {
background-color: #222;
}
.suggestion--last {
border-bottom-right-radius: 15px;
border-bottom-left-rad... | /content/code_sandbox/app/src/app/suggestion/suggestion.component.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 100 |
```css
.news {
margin-bottom: 30px;
padding: 15px;
background-color: #1a1a1a;
border-radius: 15px;
}
.news-title {
font-weight: 100;
font-size: 16px;
margin-bottom: 6px;
}
.news-content {
font-weight: 100;
font-size: 12px;
}
.news-header {
margin-top: 40px;
text-align: center;
color: #ff8a65;
... | /content/code_sandbox/app/src/app/news/news.component.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 135 |
```html
<div *ngIf="releaseNotes.length > 0" class="news-header" i18n>
Update's changes
</div>
<div *ngFor="let v of releaseNotes" class="news">
<div class="news-title">
Version {{ v.version }}
</div>
<div class="news-content" [innerHTML]="v.notes"></div>
</div>
<div *ngIf="news.length > 0" class="news-hea... | /content/code_sandbox/app/src/app/news/news.component.html | html | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 158 |
```html
<div class="suggestion" [ngClass]="{'suggestion--active': active, 'suggestion--last': last}">
<i [ngClass]="{'icon-vinyl': (type == 'album'), 'icon-note': (type == 'track')}"></i> {{ suggestion.title }} - <b>{{ suggestion.artistName }}</b>
</div>
``` | /content/code_sandbox/app/src/app/suggestion/suggestion.component.html | html | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 76 |
```css
.open-path {
cursor: pointer;
}
``` | /content/code_sandbox/app/src/app/saving-path/saving-path.component.css | css | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 10 |
```html
<div class="legend" i18n>Songs are downloaded in <span (click)="openPath()" class="label">{{ path }}</span> <i class="icon-edit open-path" (click)="changePath()"></i></div>
``` | /content/code_sandbox/app/src/app/saving-path/saving-path.component.html | html | 2016-07-29T12:27:38 | 2024-08-14T13:08:01 | alltomp3-app | AllToMP3/alltomp3-app | 1,313 | 50 |
```yaml
# .readthedocs.yml
# Required
version: 2
mkdocs:
configuration: mkdocs.yml
``` | /content/code_sandbox/readthedocs.yml | yaml | 2016-07-10T15:18:14 | 2024-08-15T16:38:12 | ue5-style-guide | Allar/ue5-style-guide | 5,102 | 25 |
```yaml
site_name: Linter and Style Guide Documentation
nav:
- Home: index.md
- Getting Started: gettingstarted.md
- How Does Linting Work?: howitworks.md
- Unreal Engine Marketplace Guidelines: unrealguidelines.md
- Gamemakin LLC Style Guide: style.md
- TODO: todo.md
theme: readthedocs
``` | /content/code_sandbox/mkdocs.yml | yaml | 2016-07-10T15:18:14 | 2024-08-15T16:38:12 | ue5-style-guide | Allar/ue5-style-guide | 5,102 | 79 |
```html
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>AlloyFinger</title>
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
<style>
html,body{
margin: 0;
padding: 0;
border: 0;
... | /content/code_sandbox/index.html | html | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 2,608 |
```html
<!DOCTYPE html>
<html>
<head>
<title>Tap State</title>
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
<style>
#test {
-webkit-tap-highlight-color: rgba(0,0,0,0);
background-color: green;
}
... | /content/code_sandbox/example/tap_state/index.html | html | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 672 |
```html
<!DOCTYPE html>
<html>
<head>
<title>Event Test</title>
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
<style>
#test {
-webkit-tap-highlight-color: rgba(0,0,0,0);
background-color: green;
}
... | /content/code_sandbox/example/test/index.html | html | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 537 |
```javascript
/* AlloyFinger v0.1.15
* By dntzhang
* Github: path_to_url
*/
; (function () {
function getLen(v) {
return Math.sqrt(v.x * v.x + v.y * v.y);
}
function dot(v1, v2) {
return v1.x * v2.x + v1.y * v2.y;
}
function getAngle(v1, v2) {
var mr = getLen(v1) * getLe... | /content/code_sandbox/alloy_finger.js | javascript | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 2,810 |
```html
<!DOCTYPE html>
<html>
<head>
<title>Event Test</title>
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
<style>
#test {
-webkit-tap-highlight-color: rgba(0,0,0,0);
background-color: green;
}
... | /content/code_sandbox/example/on_off/index.html | html | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 412 |
```html
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
<style>
.ribbon {
top: 3.2em;
right: -4.7em;
-webkit-transform: rotate(45deg);
-moz-transfor... | /content/code_sandbox/example/simple/index.html | html | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 524 |
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Canvas+AlloyFinger</title>
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
<style>
.ribbon {
top: 3.2em;
right: -4.7em;
-webkit-transf... | /content/code_sandbox/example/canvas/index.html | html | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 784 |
```html
<!DOCTYPE html>
<html>
<head>
<title>Event Test</title>
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
<style>
#test {
-webkit-tap-highlight-color: rgba(0,0,0,0);
background-color: green;
}
... | /content/code_sandbox/example/destroy/index.html | html | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 380 |
```html
<!DOCTYPE html>
<html>
<head>
<title>AlloyFinger</title>
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
<style>
.ribbon {
top: 3.2em;
right: -4.7em;
-webkit-transform: rotate(45deg);
-m... | /content/code_sandbox/example/picture/index.html | html | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 1,244 |
```jsx
/* AlloyFinger v0.1.0
* By dntzhang
* Reedited by nemoliao
* Github: path_to_url
*/
import React, { Component } from 'react';
export default class AlloyFinger extends Component {
constructor(props) {
super(props);
this.preV = { x: null, y: null };
this.pinchStartLen = null;... | /content/code_sandbox/react/AlloyFinger.jsx | jsx | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 1,919 |
```javascript
function imageLoaded(selector,onload){
var img=new Image() ;
var dom=document.querySelector(selector);
img.onload=function(){
//real_width,real_height
onload.call(dom,this.width,this.height);
img.onload=null;
img=null;
};
img.src=dom.getAttribute("src");... | /content/code_sandbox/asset/image_loaded.js | javascript | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 65 |
```javascript
/* transformjs
* By dntzhang
* Github: path_to_url
*/
;(function () {
var Matrix3D = function (n11, n12, n13, n14, n21, n22, n23, n24, n31, n32, n33, n34, n41, n42, n43, n44) {
this.elements =window.Float32Array ? new Float32Array(16) : [];
var te = this.elements;
te[0] = (... | /content/code_sandbox/transformjs/transform.js | javascript | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 2,568 |
```javascript
/* transformjs
* By dntzhang
*/
;(function () {
var Matrix3D = function (n11, n12, n13, n14, n21, n22, n23, n24, n31, n32, n33, n34, n41, n42, n43, n44) {
this.elements =window.Float32Array ? new Float32Array(16) : [];
var te = this.elements;
te[0] = (n11 !== undefined) ? n1... | /content/code_sandbox/asset/transform.js | javascript | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 2,527 |
```html
<!DOCTYPE html>
<html xmlns="path_to_url">
<head>
<title></title>
<style>
#ctt .test {
width: 100px; height: 100px; color: white; line-height: 100px; text-align: center; display: inline-block; margin-top: 30px; position: absolute; left: 0; top: 0;
}
</style>
</head>
<bod... | /content/code_sandbox/asset/a.html | html | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 873 |
```javascript
/* Alloy Game Engine
* By AlloyTeam path_to_url
* Github: path_to_url
*/
;(function (root, factory) {
if (typeof define === 'function' && define.amd) {
define([], factory);
} else if (typeof exports === 'object') {
module.exports = factory();
} else {
root.AlloyPaper... | /content/code_sandbox/asset/alloy_paper.js | javascript | 2016-05-25T23:17:03 | 2024-08-16T06:23:01 | AlloyFinger | AlloyTeam/AlloyFinger | 3,420 | 37,345 |
```javascript
/*!
* AlloyLever v1.0.4 By dntzhang
* Github: path_to_url
*/
;(function (root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory()
else if(typeof define === 'function' && define.amd)
define([], factory)
else if(typeof exports === 'obje... | /content/code_sandbox/alloy-lever.js | javascript | 2016-05-09T03:17:27 | 2024-07-29T05:45:29 | AlloyLever | AlloyTeam/AlloyLever | 1,382 | 1,542 |
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<title>AlloyLever - 1kb</title>
<style>
html,body{
padding:0;
margin: 0;
... | /content/code_sandbox/cn.html | html | 2016-05-09T03:17:27 | 2024-07-29T05:45:29 | AlloyLever | AlloyTeam/AlloyLever | 1,382 | 2,093 |
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<title>AlloyLever - 1kb js library contains development debugging, error monitoring and reporting, user problem localizat... | /content/code_sandbox/index.html | html | 2016-05-09T03:17:27 | 2024-07-29T05:45:29 | AlloyLever | AlloyTeam/AlloyLever | 1,382 | 2,164 |
```shell
# Gatekeeper - DDoS protection system.
#
# This program is free software: you can redistribute it and/or modify
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS... | /content/code_sandbox/setup.sh | shell | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 428 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/generate_if_map.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 918 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_flow_bpf.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 840 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_gt.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 1,466 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/main/main.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 3,089 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_config.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 748 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_mailbox.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 417 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/seqlock.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 1,701 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_launch.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 520 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_rib.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 3,365 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_lls.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 3,809 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_acl.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 1,104 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_fib.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 1,493 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_l2.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 974 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_net.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 6,403 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_sol.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 1,154 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/memblock.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 505 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_qid.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 269 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_ipip.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 303 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_varip.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 499 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/list.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 1,467 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_ggu.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 2,039 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_log_ratelimit.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 1,005 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_rt.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 2,457 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_flow.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 290 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_ratelimit.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 277 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_main.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 634 |
```objective-c
/*
*
* Redistribution and use in source and binary forms, with or without modifica-
* tion, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*... | /content/code_sandbox/include/coro.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 4,099 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_cps.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 1,479 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_gk.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 3,438 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/include/gatekeeper_hash.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 2,027 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/lls/arp.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 356 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/lls/cache.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 5,836 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/lls/nd.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 330 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/lls/arp.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 1,852 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/lls/main.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 9,686 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/lls/cache.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 1,129 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/lls/nd.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 6,853 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/sol/main.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 5,705 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/lib/acl.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 4,651 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/lib/l2.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 1,142 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/lib/flow.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 1,151 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/lib/qid.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 537 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/lib/ipip.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 1,129 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/lib/mailbox.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 866 |
```c
#include <rte_ip.h>
#include <rte_mbuf.h>
#include "gatekeeper_varip.h"
/* NextHeader field of IPv6 header. */
/* Hop-by-hop option header. */
#define NEXTHDR_HOP (0)
/* Routing header. */
#define NEXTHDR_ROUTING (43)
/* Fragmentation/reassembly header. */
#define NEXTHDR_FRAGMENT (44)
/* Authenticatio... | /content/code_sandbox/lib/varip.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 556 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/lib/ratelimit.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 425 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/lib/hash.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 5,965 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/lib/launch.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 1,578 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/lib/fib.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 11,048 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/lib/rib.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 8,662 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/lib/memblock.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 409 |
```c
/*
*
* Redistribution and use in source and binary forms, with or without modifica-
* tion, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. ... | /content/code_sandbox/lib/coro.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 6,880 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/lib/log_ratelimit.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 1,498 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/lib/net.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 24,701 |
```objective-c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTA... | /content/code_sandbox/gt/lua_lpm.h | objective-c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 156 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/gt/main.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 20,156 |
```lua
return function (gatekeeper_server)
--
-- Change these parameters to configure the network.
--
-- These parameters should likely be initially changed.
local log_level = staticlib.c.RTE_LOG_DEBUG
local user --= "gatekeeper"
local front_ports = {"enp133s0f0"}
local front_ips = {"10.0.1.1/24", "2001:db8... | /content/code_sandbox/lua/net.lua | lua | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 1,222 |
```lua
return function (net_conf, lls_conf, numa_table)
--
-- Configure the variables below for the GT block.
--
-- These parameters should likely be initially changed.
local n_lcores = 2
local log_level = staticlib.c.RTE_LOG_DEBUG
local lua_policy_file = "examples/policy.lua"
local lua_base_directory = "./lu... | /content/code_sandbox/lua/gt.lua | lua | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 785 |
```lua
return function (net_conf, gk_conf, gt_conf, numa_table)
--
-- Configure the variables below for the Dynamic Config block.
--
-- These parameters should likely be initially changed.
local log_level = staticlib.c.RTE_LOG_DEBUG
-- XXX #155 These parameters should only be changed for performance reasons.
... | /content/code_sandbox/lua/dyn_cfg.lua | lua | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 433 |
```lua
return function (net_conf, sol_lcores)
--
-- Configure the variables below for the SOL block.
--
-- These parameters should likely be initially changed.
local log_level = staticlib.c.RTE_LOG_DEBUG
local destination_bw_gbps = 1
-- XXX #155 These parameters should only be changed for performance reasons.... | /content/code_sandbox/lua/sol.lua | lua | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 372 |
```lua
return function (net_conf, gk_conf, lcore)
--
-- Configure the variables below for the GGU block.
--
-- These parameters should likely be initially changed.
local log_level = staticlib.c.RTE_LOG_DEBUG
-- XXX #155 These parameters should only be changed for performance reasons.
local mailbox_max_entries... | /content/code_sandbox/lua/ggu.lua | lua | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 382 |
```c
/*
* Gatekeeper - DDoS protection system.
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or ... | /content/code_sandbox/gt/lua_lpm.c | c | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 5,748 |
```lua
return function (net_conf, gk_conf, gt_conf, lls_conf, numa_table)
--
-- Configure the variables below for the CPS block.
--
-- These parameters should likely be initially changed.
local log_level = staticlib.c.RTE_LOG_DEBUG
-- XXX #155 These parameters should only be changed for performance reasons.
l... | /content/code_sandbox/lua/cps.lua | lua | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 522 |
```lua
return function (net_conf, numa_table)
--
-- Configure the variables below for the LLS block.
--
-- These parameters should likely be initially changed.
local log_level = staticlib.c.RTE_LOG_DEBUG
-- XXX #155 These parameters should only be changed for performance reasons.
local mailbox_max_entries_exp... | /content/code_sandbox/lua/lls.lua | lua | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 547 |
```lua
return function (net_conf, lls_conf, sol_conf, gk_lcores, gk_sol_map)
--
-- Configure the variables below for the GK block.
--
-- These parameters should likely be initially changed.
local log_level = staticlib.c.RTE_LOG_DEBUG
local bpf_base_directory = "./lua/bpf"
local bpf_programs = {
[0] = "grante... | /content/code_sandbox/lua/gk.lua | lua | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 1,151 |
```lua
-- The gatekeeper module is already loaded, but it only contains
-- C functions statically linked.
-- Unsetting its package.loaded entry allows Lua to load
-- the Lua functions of the module.
package.loaded["staticlib"] = nil
require "gatekeeper/staticlib"
function gatekeeper_init()
-- When gatekeeper_server ... | /content/code_sandbox/lua/main_config.lua | lua | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 839 |
```lua
-- Gatekeeper - DDoS protection system.
--
-- This program is free software: you can redistribute it and/or modify
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or F... | /content/code_sandbox/lua/gatekeeper/stdcdefs.lua | lua | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 163 |
```lua
-- Gatekeeper - DDoS protection system.
--
-- This program is free software: you can redistribute it and/or modify
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or F... | /content/code_sandbox/lua/gatekeeper/lpmlib.lua | lua | 2016-07-06T18:53:45 | 2024-08-15T00:24:19 | gatekeeper | AltraMayor/gatekeeper | 1,280 | 421 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.