repo
string
commit
string
message
string
diff
string
robmckinnon/tell_us_once
5e554b94c1ec6fce34fdf20231eff2a9d5fc0974
refactoring sass
diff --git a/app/stylesheets/screen.sass b/app/stylesheets/screen.sass index e7bec15..bcb205a 100644 --- a/app/stylesheets/screen.sass +++ b/app/stylesheets/screen.sass @@ -1,97 +1,92 @@ /* Welcome to Susy. Use this file to define screen styles. Import this file using the following HTML or equivalent: <link h...
robmckinnon/tell_us_once
00752324183c7e94288e146ff0bc87a4010293f7
added death notifications
diff --git a/db/schema.rb b/db/schema.rb index 6c854e5..777739a 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -1,50 +1,71 @@ # This file is auto-generated from the current state of the database. Instead of editing this file, # please use the migrations feature of Active Record to incrementally modify your database...
robmckinnon/tell_us_once
74a9d3f9acc59a24590b11739c5ec618f4d79462
Email matcher
diff --git a/app/models/department_notification.rb b/app/models/department_notification.rb index 2da77c5..a92e46e 100644 --- a/app/models/department_notification.rb +++ b/app/models/department_notification.rb @@ -1,21 +1,30 @@ class DepartmentNotification < ActiveRecord::Base belongs_to :submitter belongs_to :ch...
robmckinnon/tell_us_once
d5e5b68d8dee1e607ea27999bf97cf9faa7526c5
added death notification view
diff --git a/.gitignore b/.gitignore index a6ed359..43dd1e2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,24 +1,25 @@ bin +db/development_structure.sql Gemfile .bundle vendor/plugins vendor/bundler_gems test config/database.yml .DS_Store doc log rerun.txt data config/scalpel.yml \#*\# public/www* temp....
robmckinnon/tell_us_once
c2f8e30cdcae8de1bdca0eaf9ffc75fe12f40f18
Added DepartmentNotification#department attrib Added stub DepartemtnMailer Added DepartmentNotificationDetails constants with access details
diff --git a/app/models/department_mailer.rb b/app/models/department_mailer.rb new file mode 100644 index 0000000..0da43bb --- /dev/null +++ b/app/models/department_mailer.rb @@ -0,0 +1,4 @@ +class DepartmentMailer < ActionMailer::Base + + +end diff --git a/app/models/department_notification.rb b/app/models/departmen...
robmckinnon/tell_us_once
eb1769eb8cdea9eb677e3f65784a1f984b6ff957
added home page view
diff --git a/.autotest b/.autotest new file mode 100644 index 0000000..de8821d --- /dev/null +++ b/.autotest @@ -0,0 +1,3 @@ +Autotest.add_hook :initialize do |at| +%w{.svn .hg .git vendor rerun.txt}.each {|exception| at.add_exception(exception)} +end diff --git a/app/controllers/application_controller.rb b/app/control...
robmckinnon/tell_us_once
7908dbe968ce3bfd857d2f9f3c73c5d6ca0ba0f1
added cucumber and initial feature definition
diff --git a/config/cucumber.yml b/config/cucumber.yml new file mode 100644 index 0000000..b7acd38 --- /dev/null +++ b/config/cucumber.yml @@ -0,0 +1,7 @@ +<% +rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : "" +rerun_opts = rerun.to_s.strip.empty? ? "--format progress features" : "--format #{ENV['CUCUMBER_FOR...
robmckinnon/tell_us_once
47bc073dc81d9c65ad1f2a35a40442db86f17d84
Add stub department_notification and delayed_job plugin (instead of gem)
diff --git a/Rakefile b/Rakefile index 3bb0e85..c111102 100644 --- a/Rakefile +++ b/Rakefile @@ -1,10 +1,17 @@ # Add your own tasks in files placed in lib/tasks ending in .rake, # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake. require(File.join(File.dirname(__FILE__), 'con...
robmckinnon/tell_us_once
26d8f41fc56ae9ee1c2fb2fd4afff1a5f64d6c94
ignore compiled stylesheets
diff --git a/.gitignore b/.gitignore index 5f3add3..a6ed359 100644 --- a/.gitignore +++ b/.gitignore @@ -1,23 +1,24 @@ bin Gemfile .bundle vendor/plugins vendor/bundler_gems test config/database.yml .DS_Store doc log rerun.txt data config/scalpel.yml \#*\# public/www* temp.rb lib/scrapers gov* Gemfil...
robmckinnon/tell_us_once
ffa714df51526acd5ea6c4dccf49672deb1a555e
custom layout
diff --git a/app/stylesheets/screen.sass b/app/stylesheets/screen.sass index 27ce172..912bf79 100644 --- a/app/stylesheets/screen.sass +++ b/app/stylesheets/screen.sass @@ -1,14 +1,90 @@ /* - Welcome to Compass. - In this file you should write your main styles. (or centralize your imports) + Welcome to Susy. Use th...
robmckinnon/tell_us_once
c1bc67a03d5163071aa3c994bdeeb4bd3d368e8a
added compass susy sass layout
diff --git a/app/stylesheets/_base.sass b/app/stylesheets/_base.sass new file mode 100644 index 0000000..9c0a1da --- /dev/null +++ b/app/stylesheets/_base.sass @@ -0,0 +1,215 @@ +//** +// Susy: Elastic-Fluid grids without all the math +// by Eric Meyer and OddBird Collective +// Site: www.oddbird.net/susy/ +//** + +...
robmckinnon/tell_us_once
f6d4eda390846db21ba0761347349ccc059e2c0e
ignore Gemfile
diff --git a/.gitignore b/.gitignore index 37f6c0f..5f3add3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,22 +1,23 @@ bin +Gemfile .bundle vendor/plugins vendor/bundler_gems test config/database.yml .DS_Store doc log rerun.txt data config/scalpel.yml \#*\# public/www* temp.rb lib/scrapers gov* Gemfil...
robmckinnon/tell_us_once
ee2d4b4121edcda8f4668abbfc30c0865a40b280
added compass and compass-susy-plugin
diff --git a/Gemfile b/Gemfile index 55e009f..d621c9f 100644 --- a/Gemfile +++ b/Gemfile @@ -1,25 +1,27 @@ # bundle install vendor/bundler_gems --disable-shared-gems source 'http://rubygems.org' source 'http://gems.github.com' gem 'rails', '2.3.5' gem 'haml' gem 'resource_controller' gem 'mysql' gem 'delayed_...
robmckinnon/tell_us_once
4b2d73302fb202677d439338f2b387c4a18ef9dd
added Submitter model
diff --git a/Gemfile b/Gemfile index 87e4886..55e009f 100644 --- a/Gemfile +++ b/Gemfile @@ -1,25 +1,25 @@ # bundle install vendor/bundler_gems --disable-shared-gems source 'http://rubygems.org' source 'http://gems.github.com' gem 'rails', '2.3.5' gem 'haml' gem 'resource_controller' gem 'mysql' gem 'delayed_...
robmckinnon/tell_us_once
8d44cc5298c2dbdf26f70a1cc396354a8b2dc0af
added preinitializer for bundler
diff --git a/Gemfile b/Gemfile index 55e009f..87e4886 100644 --- a/Gemfile +++ b/Gemfile @@ -1,25 +1,25 @@ # bundle install vendor/bundler_gems --disable-shared-gems source 'http://rubygems.org' source 'http://gems.github.com' gem 'rails', '2.3.5' gem 'haml' gem 'resource_controller' gem 'mysql' gem 'delayed_...
robmckinnon/tell_us_once
fd1f27386fd936200db5f0c94cd20ffabd17e7cf
added sqlite
diff --git a/Gemfile b/Gemfile index 87e4886..55e009f 100644 --- a/Gemfile +++ b/Gemfile @@ -1,25 +1,25 @@ # bundle install vendor/bundler_gems --disable-shared-gems source 'http://rubygems.org' source 'http://gems.github.com' gem 'rails', '2.3.5' gem 'haml' gem 'resource_controller' gem 'mysql' gem 'delayed_...
robmckinnon/tell_us_once
fb1b59c1d934ef75e1d6cd395b0963c2d132eb6e
added gem file
diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..87e4886 --- /dev/null +++ b/Gemfile @@ -0,0 +1,25 @@ +# bundle install vendor/bundler_gems --disable-shared-gems +source 'http://rubygems.org' +source 'http://gems.github.com' + +gem 'rails', '2.3.5' +gem 'haml' +gem 'resource_controller' +gem 'mysql' +...
kkubasik/human-evolution-database
40153b72a3143076e08562b547f4beb801f7b87a
Processing submission form
diff --git a/humanevo/models.py b/humanevo/models.py index 0ca5af4..cccc1da 100644 --- a/humanevo/models.py +++ b/humanevo/models.py @@ -1,92 +1,95 @@ # Python imports import logging # AppEngine imports -from google.appengine.api import users, urlfetch +from google.appengine.api import users, urlfetch, images fro...
kkubasik/human-evolution-database
37051a3a248d8e6b27f95978362ba26b4af1fb57
inital dynamic work
diff --git a/humanevo/models.py b/humanevo/models.py index a626709..0ca5af4 100644 --- a/humanevo/models.py +++ b/humanevo/models.py @@ -1,88 +1,92 @@ # Python imports import logging # AppEngine imports from google.appengine.api import users, urlfetch from google.appengine.ext import db, search import urllib f...
kkubasik/human-evolution-database
7bad292dcee94fa432575a75c3d8d5679187035b
more updates to templates
diff --git a/static/layout.css b/static/layout.css index 2f495f4..35c6685 100644 --- a/static/layout.css +++ b/static/layout.css @@ -1,170 +1,197 @@ /** BASIC */ html, body { height: 90%; } body { margin: 0px; padding: 0px; background: #273840 url(images/homepage01.jpg) repeat-x left top; fo...
kkubasik/human-evolution-database
87589043f3bbddfdd06b267119c90fc7a628d2df
inital formatting patch from john
diff --git a/static/default.css b/static/default.css new file mode 100644 index 0000000..8fb418e --- /dev/null +++ b/static/default.css @@ -0,0 +1,14 @@ +/** BASIC */ + +body { + font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; + color: #004784 +} + +a:link { + color: #004784 +} + +a:hover { + tex...
kkubasik/human-evolution-database
661a791c78ddbfd3259dfec40f2d3b76e40911ac
updates
diff --git a/django/__init__.pyc b/django/__init__.pyc index 8c96001..db4193a 100644 Binary files a/django/__init__.pyc and b/django/__init__.pyc differ diff --git a/humanevo/urls.py b/humanevo/urls.py index 5dd7749..e309e74 100644 --- a/humanevo/urls.py +++ b/humanevo/urls.py @@ -1,34 +1,34 @@ from django.conf.urls.d...
kkubasik/human-evolution-database
539e97c17b7f2ff6099d2b32f584466e1c6e66e8
Setting up initial code to add new fossils and utilize django newforms
diff --git a/humanevo/urls.py b/humanevo/urls.py index a1c6506..5dd7749 100644 --- a/humanevo/urls.py +++ b/humanevo/urls.py @@ -1,34 +1,34 @@ from django.conf.urls.defaults import * urlpatterns = patterns( 'humanevo.views', (r'^$', 'index'), (r'^all$', 'all'), #=====================================...
kkubasik/human-evolution-database
9a94e0260eff19b9f187736bf96b5d4110db4f7b
Have both views working
diff --git a/humanevo/middleware.py b/humanevo/middleware.py new file mode 100644 index 0000000..8ca1112 --- /dev/null +++ b/humanevo/middleware.py @@ -0,0 +1,9 @@ +"""Custom middleware. Some of this may be generally useful.""" + +from google.appengine.api import users + + +class AddUserToRequestMiddleware(object): + ...
kkubasik/human-evolution-database
7eb508287dd35215ecfa2ebcda33aa1eb64238a9
Major updates/shifts
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0d20b64 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.pyc diff --git a/app.yaml b/app.yaml index 90621ef..ac93443 100644 --- a/app.yaml +++ b/app.yaml @@ -1,12 +1,11 @@ application: kambizkamrani version: 1 runtime: python api_version: 1 -...
kkubasik/human-evolution-database
58484b3e7fb1f080d8b5ea5800c299de9d0d21ac
more cool files
diff --git a/.project b/.project new file mode 100644 index 0000000..2fa9636 --- /dev/null +++ b/.project @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>evolution</name> + <comment></comment> + <projects> + </projects> + <buildSpec> + <buildCommand> + <name>org.python.pydev.Py...
kkubasik/human-evolution-database
c6b0fb95ddb3b8b97dc4eb14d38a37715468aeac
Initial import
diff --git a/app.yaml b/app.yaml new file mode 100644 index 0000000..1566612 --- /dev/null +++ b/app.yaml @@ -0,0 +1,34 @@ +application: kambizkamrani +version: 1 +runtime: python +api_version: 1 + +handlers: +- url: /stylesheets + static_dir: stylesheets + +- url: /templates + static_dir: templates + +- url: /fav...
amanelis/3-way-handshake
8e367a2362c855345bb9d0dc1bbfb3da01e1932a
”1276215171”
diff --git a/USAGE b/USAGE index bdd4cdb..c252c82 100644 --- a/USAGE +++ b/USAGE @@ -1,4 +1,6 @@ -./driver logs/syn.64.log logs/cfg.alex +Running the next command, will read in packets and send data out to network: +./old logs/syn.64.log logs/cfg.alex +./tmpdriver logs/syn.64.log logs/cfg.syn ip.addr eq 192.168.2.27...
amanelis/3-way-handshake
5c894441139cbad94b71e00380bf620d9c9e84ca
”1272672095”
diff --git a/.gitignore b/.gitignore index 5dcfb29..267f360 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,11 @@ #Ignore my executables proxy pparse lparse oparse driver -tmpdriver *.out *.*~ #Do not ignore .gitignore file !.gitignore diff --git a/tmpdriver b/tmpdriver new file mode 100755 index 00000...
amanelis/3-way-handshake
719b65fea0396d9bfd2abc1c7e0cebc455458577
”1272672078”
diff --git a/aja/Makefile b/aja/Makefile new file mode 100644 index 0000000..6e67d94 --- /dev/null +++ b/aja/Makefile @@ -0,0 +1,26 @@ +CC = gcc +CFLAGS = -Wall -g +LIBS = -ldnet -lpcap + +all: driver + +mypar: parse.c + $(CC) $(CFLAGS) parse.c -o oparse $(LIBS) + +mylab: parse_lab.c + $(CC) $(CFLAGS) parse_lab.c -o lp...
amanelis/3-way-handshake
fc14feecbd75e021002b520c15fc05832f88bf96
”1272599603”
diff --git a/driver.old.c b/driver.old.c new file mode 100644 index 0000000..82aaad6 --- /dev/null +++ b/driver.old.c @@ -0,0 +1,652 @@ +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> +#include <errno.h> + +#include <sys/types.h> +#include <sys/stat.h> +#include <sys/fcntl.h> +#includ...
amanelis/3-way-handshake
00f04869969dd0b71e84c6fe75208f3f07500e96
”1272598878”
diff --git a/driver.c b/driver.c index e0dc9b0..8e5742d 100644 --- a/driver.c +++ b/driver.c @@ -96,567 +96,566 @@ pcap_t *packetfile; // <victim ip> // <victim mac> // <victim port> // // <attacker ip> // <attacker mac> // <attacker port> // // <replay victim ip> // <replay victim mac> // // <repl...
amanelis/3-way-handshake
34af340a412a7504428b2ef150e5147447683e0c
”1272598278”
diff --git a/driver.tmp.1.c b/driver.tmp.1.c new file mode 100644 index 0000000..0fd0289 --- /dev/null +++ b/driver.tmp.1.c @@ -0,0 +1,689 @@ +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> +#include <errno.h> + +#include <sys/types.h> +#include <sys/stat.h> +#include <sys/fcntl.h> +#...
amanelis/3-way-handshake
0f3b3f48573edef3bc6d3782f72ab53f67b66695
”1272596826”
diff --git a/.gitignore b/.gitignore index 267f360..5dcfb29 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,12 @@ #Ignore my executables proxy pparse lparse oparse driver +tmpdriver *.out *.*~ #Do not ignore .gitignore file !.gitignore
amanelis/3-way-handshake
b00764778a027d253446338be5e7597f1737c4db
”1272596804”
diff --git a/driver.tmp.c b/driver.tmp.c index faefc78..a202e38 100644 --- a/driver.tmp.c +++ b/driver.tmp.c @@ -1,713 +1,688 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/fcntl.h> #include <sys/...
amanelis/3-way-handshake
f7ae91660083b9718589b060fe98555475042152
”1272596550”
diff --git a/driver.tmp.c b/driver.tmp.c index 63bf210..faefc78 100644 --- a/driver.tmp.c +++ b/driver.tmp.c @@ -1,688 +1,713 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/fcntl.h> #include <sys/...
amanelis/3-way-handshake
0f805fee21f73d8e5e6b487bd4115df59f28f9ca
”1272594479”
diff --git a/driver.tmp.c b/driver.tmp.c index cdee0f3..63bf210 100644 --- a/driver.tmp.c +++ b/driver.tmp.c @@ -1,687 +1,673 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/fcntl.h> #include <sys/...
amanelis/3-way-handshake
29422c42f28b8bda9a1f57ebe23914fb784c7498
”1272594428”
diff --git a/driver.c b/driver.c index 228797d..e0dc9b0 100644 --- a/driver.c +++ b/driver.c @@ -1,662 +1,662 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/fcntl.h> #include <sys/time.h> #incl...
amanelis/3-way-handshake
67e5e300898f123bd6f170464b4e198cf8779d0d
”1272590924”
diff --git a/driver.tmp.c b/driver.tmp.c index 5d3517d..cdee0f3 100644 --- a/driver.tmp.c +++ b/driver.tmp.c @@ -1,685 +1,702 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/fcntl.h> #include <sys/...
amanelis/3-way-handshake
8715643546742be18c02200921c00728a9a96b9d
”1272588929”
diff --git a/driver.c b/driver.c index 7ca37b3..228797d 100644 --- a/driver.c +++ b/driver.c @@ -1,662 +1,662 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/fcntl.h> #include <sys/time.h> #incl...
amanelis/3-way-handshake
0e0ae32a61d2a9dc0fb298528ee14dca30310b81
”1272587671”
diff --git a/USAGE b/USAGE index 2503469..bdd4cdb 100644 --- a/USAGE +++ b/USAGE @@ -1 +1,4 @@ ./driver logs/syn.64.log logs/cfg.alex + +ip.addr eq 192.168.2.27 and !ssh +ip.addr eq 192.168.5.7 and !ssh diff --git a/driver.c b/driver.c index 072a3a9..7ca37b3 100644 --- a/driver.c +++ b/driver.c @@ -1,653 +1,662 @@ #i...
amanelis/3-way-handshake
61a08bb55a4ddc0c3a0cbf6a3c2e63b88d3e254b
”1272585497”
diff --git a/Makefile b/Makefile index 8d1f57e..54448cb 100644 --- a/Makefile +++ b/Makefile @@ -1,26 +1,26 @@ CC = gcc CFLAGS = -Wall -g LIBS = -ldnet -lpcap all: driver mypar: parse.c $(CC) $(CFLAGS) parse.c -o oparse $(LIBS) mylab: parse_lab.c $(CC) $(CFLAGS) parse_lab.c -o lparse $(LIBS) myprox: ...
amanelis/3-way-handshake
1416a34392426fc25afe9893208bb804f3affd90
”1272585341”
diff --git a/Makefile b/Makefile index ec32aec..8d1f57e 100644 --- a/Makefile +++ b/Makefile @@ -1,26 +1,26 @@ CC = gcc CFLAGS = -Wall -g LIBS = -ldnet -lpcap all: driver mypar: parse.c $(CC) $(CFLAGS) parse.c -o oparse $(LIBS) mylab: parse_lab.c $(CC) $(CFLAGS) parse_lab.c -o lparse $(LIBS) myprox: ...
amanelis/3-way-handshake
018222ab0ee4144c56d96ee2315afe55ac39f81a
”1272578870”
diff --git a/driver.tmp.c b/driver.tmp.c index cfd8e25..b4ee49e 100644 --- a/driver.tmp.c +++ b/driver.tmp.c @@ -1,686 +1,691 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/fcntl.h> #include <sys/...
amanelis/3-way-handshake
0e9de24d7209f36e1739566753faf469afe22ab7
”1272577316”
diff --git a/driver.tmp.c b/driver.tmp.c index f88b623..cfd8e25 100644 --- a/driver.tmp.c +++ b/driver.tmp.c @@ -1,663 +1,686 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/fcntl.h> #include <sys/...
amanelis/3-way-handshake
9bab3d96edec9134f672cf1a8adfad6973e5c41a
”1272575614”
diff --git a/Makefile b/Makefile index f01e0d6..ec32aec 100644 --- a/Makefile +++ b/Makefile @@ -1,23 +1,26 @@ CC = gcc CFLAGS = -Wall -g LIBS = -ldnet -lpcap all: driver mypar: parse.c $(CC) $(CFLAGS) parse.c -o oparse $(LIBS) mylab: parse_lab.c $(CC) $(CFLAGS) parse_lab.c -o lparse $(LIBS) myprox: ...
amanelis/3-way-handshake
3306875990d26a9b9481d047c8f617d0543ae292
”1272573920”
diff --git a/driver.c b/driver.c index 18cb630..00b1344 100644 --- a/driver.c +++ b/driver.c @@ -1,651 +1,654 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/fcntl.h> #include <sys/time.h> #incl...
amanelis/3-way-handshake
268db80bcc825d3d4dd05bb60a76854a13be7bd1
”1272572391”
diff --git a/driver.c b/driver.c index 89ae2fb..18cb630 100644 --- a/driver.c +++ b/driver.c @@ -1,640 +1,651 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/fcntl.h> #include <sys/time.h> #incl...
amanelis/3-way-handshake
1b7f1e61e81074514a4456be43026d00886c0a11
”1272563320”
diff --git a/.gitignore b/.gitignore index 93d483d..267f360 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,11 @@ #Ignore my executables proxy pparse lparse oparse driver +*.out *.*~ -a.out #Do not ignore .gitignore file !.gitignore
amanelis/3-way-handshake
86f46b27e0b45c7ef71a9736cc017e78baa66d62
”1272563141”
diff --git a/driver.c b/driver.c index 97a499a..89ae2fb 100644 --- a/driver.c +++ b/driver.c @@ -1,647 +1,640 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/fcntl.h> #include <sys/time.h> #incl...
amanelis/3-way-handshake
056c093eb9400cf53c115fa76fe7f8d518034458
”1272562779”
diff --git a/a.out b/a.out index a976a84..4102438 100755 Binary files a/a.out and b/a.out differ diff --git a/driver.c b/driver.c index 59f7bc2..97a499a 100644 --- a/driver.c +++ b/driver.c @@ -1,570 +1,647 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> #inc...
amanelis/3-way-handshake
98b142a3fb40e3a6f611d1521d03d8b7c4ba797e
”1272558766”
diff --git a/.gitignore b/.gitignore index 822b203..93d483d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,11 @@ #Ignore my executables proxy pparse lparse oparse driver *.*~ +a.out #Do not ignore .gitignore file !.gitignore
amanelis/3-way-handshake
d4f61f8c3a8f78662e116e21c4160e500e3132d6
”1272558746”
diff --git a/a.out b/a.out new file mode 100755 index 0000000..a976a84 Binary files /dev/null and b/a.out differ diff --git a/readfile.c b/readfile.c index 0867963..dcd56aa 100644 --- a/readfile.c +++ b/readfile.c @@ -1,55 +1,71 @@ #include <stdio.h> #include <stdlib.h> #include <unistd.h> +#include <string.h> st...
amanelis/3-way-handshake
477718913861efde75022e0743c86c69738af433
”1272557724”
diff --git a/.gitignore b/.gitignore index e433c2f..822b203 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,10 @@ #Ignore my executables proxy pparse lparse oparse driver +*.*~ #Do not ignore .gitignore file !.gitignore diff --git a/driver.c~ b/driver.c~ deleted file mode 100644 index 64c59d0..0000000 ---...
amanelis/3-way-handshake
a50af2068312b43e6991767214a9a121677d4892
”1272557674”
diff --git a/driver.c~ b/driver.c~ new file mode 100644 index 0000000..64c59d0 --- /dev/null +++ b/driver.c~ @@ -0,0 +1,590 @@ +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> +#include <errno.h> + +#include <sys/types.h> +#include <sys/stat.h> +#include <sys/fcntl.h> +#include <sys/ti...
amanelis/3-way-handshake
e5bd9a978b74a810e729b8489b38cb74a23390e4
”1272554192”
diff --git a/driver.c b/driver.c index cad79ad..59f7bc2 100644 --- a/driver.c +++ b/driver.c @@ -32,534 +32,539 @@ struct addr cad, cha; // client ip and mac address structures struct addr sad, sha; // server ip and mac address structures struct addr mad, mha; // my ip and mac address structures ...
amanelis/3-way-handshake
7a3623843abf80f8a1d2157c203e8776b6990a63
”1272553630”
diff --git a/driver.c b/driver.c index 0fccbaf..cad79ad 100644 --- a/driver.c +++ b/driver.c @@ -33,533 +33,533 @@ struct addr sad, sha; // server ip and mac address structures struct addr mad, mha; // my ip and mac address structures char cip[32], chw[32]; // client ascii ip and mac addresses ...
amanelis/3-way-handshake
290970fc65b1f02eb9739270bc97d5839f4936c2
”1272485149”
diff --git a/driver.c b/driver.c index f0d508c..0fccbaf 100644 --- a/driver.c +++ b/driver.c @@ -1,546 +1,565 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/fcntl.h> #include <sys/time.h> #incl...
amanelis/3-way-handshake
0e0c4403687affbc9a9ba54d076040aa4f10b11d
”1272479467”
diff --git a/USAGE b/USAGE new file mode 100644 index 0000000..2503469 --- /dev/null +++ b/USAGE @@ -0,0 +1 @@ +./driver logs/syn.64.log logs/cfg.alex diff --git a/driver.c b/driver.c index a329fc3..f0d508c 100644 --- a/driver.c +++ b/driver.c @@ -1,534 +1,546 @@ #include <stdio.h> #include <stdlib.h> #include <stri...
amanelis/3-way-handshake
a07d1363a4265330158d2bf84e62900a2a3b3f1b
”1272475372”
diff --git a/driver.c b/driver.c index c52a268..a329fc3 100644 --- a/driver.c +++ b/driver.c @@ -1,542 +1,534 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/fcntl.h> #include <sys/time.h> #incl...
amanelis/3-way-handshake
03c65546ed96517b180173d1705d1caecbb05754
”1272466932”
diff --git a/driver.c b/driver.c index ff3eeb3..c52a268 100644 --- a/driver.c +++ b/driver.c @@ -1,537 +1,542 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/fcntl.h> #include <sys/time.h> #incl...
amanelis/3-way-handshake
bf17ec489456fc8ed91cdaced7c73be6d5f54a36
added changes to open_devices()
diff --git a/README b/README index 5ab10c6..69fa7da 100644 --- a/README +++ b/README @@ -1,45 +1,47 @@ C TCP Dump Log Analyzer Written by Alex Manelis <amanelis@gmail.com> Description: This project reads in a TCP dump file. It analyzes it, and sorts throught types of packets. Using this it can take this data t...
amanelis/3-way-handshake
bb1ce1d97dbbe277e03ddbde8918abb11bc5fce8
driver.c working correctly
diff --git a/Makefile b/Makefile index 4d58db1..f01e0d6 100644 --- a/Makefile +++ b/Makefile @@ -1,23 +1,23 @@ CC = gcc CFLAGS = -Wall -g LIBS = -ldnet -lpcap -all: mylab myprox +all: driver mypar: parse.c $(CC) $(CFLAGS) parse.c -o oparse $(LIBS) mylab: parse_lab.c $(CC) $(CFLAGS) parse_lab.c -o lparse ...
amanelis/3-way-handshake
d779037ea995bbbaeb3b415deb1092556e43a6bc
make driver is successfull packet resubmission
diff --git a/.gitignore b/.gitignore index 132eabd..e433c2f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,9 @@ #Ignore my executables proxy pparse lparse oparse +driver #Do not ignore .gitignore file !.gitignore diff --git a/driver b/driver deleted file mode 100755 index e928ddf..0000000 Binary files a/d...
amanelis/3-way-handshake
38fc2a03cb5310d81aa2e6bcc663d85992f0cdf0
make driver is successfull packet resubmission
diff --git a/Makefile b/Makefile index ec83e24..4d58db1 100644 --- a/Makefile +++ b/Makefile @@ -1,20 +1,23 @@ CC = gcc CFLAGS = -Wall -g LIBS = -ldnet -lpcap all: mylab myprox mypar: parse.c $(CC) $(CFLAGS) parse.c -o oparse $(LIBS) mylab: parse_lab.c $(CC) $(CFLAGS) parse_lab.c -o lparse $(LIBS) my...
amanelis/3-way-handshake
f4fb0864975f615104c4c507f6a06a7e1eaa715a
get ready to compile to one file
diff --git a/parse_lab.c b/parse_lab.c index f5289a4..032b215 100644 --- a/parse_lab.c +++ b/parse_lab.c @@ -1,252 +1,257 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <errno.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/fcntl.h> #include <sys/time...
amanelis/3-way-handshake
f511de6e63ed0d2064acab4e8889cce9dc11a5c7
latest update
diff --git a/logs/cfg.alex b/logs/cfg.alex index 0a99e0e..6d93345 100644 --- a/logs/cfg.alex +++ b/logs/cfg.alex @@ -1,5 +1,5 @@ -192.168.2.35 -08:00:20:c5:2e:17 -192.168.2.99 -00:50:da:ba:1d:50 +129.115.30.30 +00:50:DA:C3:CB:FE +129.115.30.31 +08:00:20:76:81:41 eth0 diff --git a/logs/cfg.syn.1 b/logs/cfg.syn.1 new fi...
amanelis/3-way-handshake
fb1e141b7f03dd7a10b3d94bd8033f77f55baf35
.gitignore file
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..132eabd --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +#Ignore my executables +proxy +pparse +lparse +oparse + +#Do not ignore .gitignore file +!.gitignore diff --git a/logs/cfg.alex b/logs/cfg.alex new file mode 100644 index 0000000..0a99e0e ---...
amanelis/3-way-handshake
a35fb24f7f60256114e2d3b45febe1a7ed1bff28
added log files
diff --git a/dnet.examples/clutch.c b/dnet.examples/clutch.c new file mode 100644 index 0000000..7a60c98 --- /dev/null +++ b/dnet.examples/clutch.c @@ -0,0 +1,585 @@ +/* + * $Id: clutch.c,v 1.3 2002/05/05 22:27:28 route Exp $ + * + * Building Open Source Network Security Tools + * clutch.c - libdnet example code + *...
amanelis/3-way-handshake
f10fdd4439c8a9249298f5cabc8d5933ea982fdf
working copy
diff --git a/logs/alex.log b/logs/alex.log new file mode 100644 index 0000000..55fb9a9 --- /dev/null +++ b/logs/alex.log @@ -0,0 +1 @@ +129.115.248.230 diff --git a/parse_lab.c b/parse_lab.c index 95cf0ef..0eac41c 100644 --- a/parse_lab.c +++ b/parse_lab.c @@ -1,245 +1,243 @@ #include <stdio.h> #include <stdlib.h> #...
amanelis/3-way-handshake
19877e1f92731f3905b1f9c6a874581786f2a9bf
proxy compiling
diff --git a/Makefile b/Makefile index 1de639e..ec83e24 100644 --- a/Makefile +++ b/Makefile @@ -1,17 +1,20 @@ CC = gcc CFLAGS = -Wall -g LIBS = -ldnet -lpcap -all: mypar mylab myprox +all: mylab myprox mypar: parse.c $(CC) $(CFLAGS) parse.c -o oparse $(LIBS) mylab: parse_lab.c $(CC) $(CFLAGS) parse_lab....
amanelis/3-way-handshake
28a82e5defcd38b6100274944cf7ab97681fc8f7
proxy.c proxy.h added
diff --git a/proxy.c b/proxy.c new file mode 100644 index 0000000..8916c51 --- /dev/null +++ b/proxy.c @@ -0,0 +1,275 @@ +#include <stdio.h> +#include <sys/types.h> +#include <sys/time.h> +#include <sys/stat.h> +#include <sys/fcntl.h> +#include <unistd.h> +#include <stdlib.h> +#include <pcap.h> +#include <dnet.h> +#inc...
amanelis/3-way-handshake
dd4ea11254066ed138238e215c019d3c4b562e74
proxy remove
diff --git a/Makefile b/Makefile index 3759b57..c797a41 100644 --- a/Makefile +++ b/Makefile @@ -1,15 +1,14 @@ CC = gcc CFLAGS = -Wall -g LIBS = -ldnet -lpcap all: mypar mylab mypar: parse.c $(CC) $(CFLAGS) parse.c -o oparse $(LIBS) mylab: parse_lab.c $(CC) $(CFLAGS) parse_lab.c -o lparse $(LIBS) cle...
amanelis/3-way-handshake
a8833e5bb8162651d0b66224da0fce7e2d2bed7f
include update
diff --git a/parse_lab.c b/parse_lab.c index 754c9ed..261e379 100644 --- a/parse_lab.c +++ b/parse_lab.c @@ -1,242 +1,242 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> +#include <unistd.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/fcntl.h> #include <sys/time.h> -#include <unist...
amanelis/3-way-handshake
59761092702bceb4d4db886dd68fcba9ceb10c7b
email added to README
diff --git a/README b/README index 995c24b..4932c22 100644 --- a/README +++ b/README @@ -1,33 +1,33 @@ C TCP Dump Log Analyzer -Written by Alex Manelis +Written by Alex Manelis <amanelis@gmail.com> parse.c - This was the original attempt at trying to read the packets and information. Its implementation is not as...
amanelis/3-way-handshake
023bab7a63840a1a8147f5d4442792f038532c7a
bit-twist added to README
diff --git a/README b/README index 3fdc5cb..995c24b 100644 --- a/README +++ b/README @@ -1,27 +1,33 @@ C TCP Dump Log Analyzer Written by Alex Manelis parse.c - This was the original attempt at trying to read the packets and information. Its implementation is not as effective as wanted considering I am doing ...
amanelis/3-way-handshake
82633e8aaa1a1be66eaf3e92663080faff116b50
Change to README and Makefile
diff --git a/Makefile b/Makefile index f166d46..3759b57 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,15 @@ +CC = gcc +CFLAGS = -Wall -g +LIBS = -ldnet -lpcap + all: mypar mylab mypar: parse.c - gcc -Wall -g parse.c -o oparse -ldnet -lpcap + $(CC) $(CFLAGS) parse.c -o oparse $(LIBS) mylab: parse_lab.c - gcc -...
amanelis/3-way-handshake
6da0a803dae3dde609ee13e3a786edc509cd4a8c
Fork removed on parse_lab.c
diff --git a/parse_lab.c b/parse_lab.c index 0ca2430..754c9ed 100644 --- a/parse_lab.c +++ b/parse_lab.c @@ -1,270 +1,242 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/fcntl.h> #include <sys/time.h> #include <unistd.h> #include <dne...
rmr/ptxdist-efl
ed9c05f38efcae9fd50931bf10f6118c7b6ce3c7
[edje] Select host-edje when selecting edje.
diff --git a/rules/edje.in b/rules/edje.in index c671438..d2612fa 100644 --- a/rules/edje.in +++ b/rules/edje.in @@ -1,21 +1,22 @@ ## SECTION=multimedia_efl config EDJE tristate prompt "edje" select LUA select EINA select EET select EVAS select ECORE select ECORE_FILE select EMBRYO + select HOST_E...
rmr/ptxdist-efl
090afc8719ca3ca30b54a3ede8bc7e660d9c6ecc
[enlightenment] Added support for the enlightenment.
diff --git a/rules/enlightenment.in b/rules/enlightenment.in new file mode 100644 index 0000000..94f40c5 --- /dev/null +++ b/rules/enlightenment.in @@ -0,0 +1,482 @@ +## SECTION=multimedia_efl + +menuconfig ENLIGHTENMENT + tristate + prompt "enlightenment " + select EFREET + select EINA + select EET + s...
rmr/ptxdist-efl
25853d94f7a94f11100b2d4480fd44da10d7944a
[elementary] Added support for the efl library elementary.
diff --git a/rules/elementary.in b/rules/elementary.in new file mode 100644 index 0000000..ddd2ea3 --- /dev/null +++ b/rules/elementary.in @@ -0,0 +1,65 @@ +## SECTION=multimedia_efl + +menuconfig ELEMENTARY + tristate + prompt "elementary " + select EINA + select EET + select EVAS + select ECORE + s...
rmr/ptxdist-efl
d0be52590d793575b355088de91a7584c480ff20
[host-edje] Added edje to host tools.
diff --git a/rules/host-edje.in b/rules/host-edje.in new file mode 100644 index 0000000..5509c7b --- /dev/null +++ b/rules/host-edje.in @@ -0,0 +1,11 @@ +## SECTION=hosttools_noprompt + +config HOST_EDJE + tristate + select HOST_LUA + select HOST_EINA + select HOST_EET + select HOST_ECORE ...
rmr/ptxdist-efl
eb59cacb7ae0d773de8f3f534731b34901f0d662
[host-evas] Added evas to host tools.
diff --git a/rules/host-evas.in b/rules/host-evas.in new file mode 100644 index 0000000..347d194 --- /dev/null +++ b/rules/host-evas.in @@ -0,0 +1,11 @@ +## SECTION=hosttools_noprompt + +config HOST_EVAS + tristate + select HOST_FREETYPE + select HOST_LIBJPEG + select HOST_LIBPNG + select ...
rmr/ptxdist-efl
86d2a3fb9bfc49d6fece6085def27fb2f8385c15
[host-embryo] Added embryo to host tools.
diff --git a/rules/host-embryo.in b/rules/host-embryo.in new file mode 100644 index 0000000..3059f63 --- /dev/null +++ b/rules/host-embryo.in @@ -0,0 +1,5 @@ +## SECTION=hosttools_noprompt + +config HOST_EMBRYO + tristate + default ALLYES diff --git a/rules/host-embryo.make b/rules/host-embryo.make new file...
rmr/ptxdist-efl
e6f381a01f1c8938cb1ab396b21f04cd3061745f
[host-ecore] Added ecore to host.
diff --git a/rules/host-ecore.in b/rules/host-ecore.in new file mode 100644 index 0000000..71232a1 --- /dev/null +++ b/rules/host-ecore.in @@ -0,0 +1,6 @@ +## SECTION=hosttools_noprompt + +config HOST_ECORE + tristate + select HOST_EINA + default ALLYES diff --git a/rules/host-ecore.make b/rules/host-...
rmr/ptxdist-efl
692138f062d9e4e904297dded5e853d6cfda29b8
[host-eet] Added eet to host tools.
diff --git a/rules/host-eet.in b/rules/host-eet.in new file mode 100644 index 0000000..bf71227 --- /dev/null +++ b/rules/host-eet.in @@ -0,0 +1,6 @@ +## SECTION=hosttools_noprompt + +config HOST_EET + tristate + select HOST_EINA + default ALLYES diff --git a/rules/host-eet.make b/rules/host-eet.make n...
rmr/ptxdist-efl
f3606e3cfbc13243ec6e653b7207dc48df11c406
[host-eina] Added eina for host.
diff --git a/rules/host-eina.in b/rules/host-eina.in new file mode 100644 index 0000000..1cd0fe4 --- /dev/null +++ b/rules/host-eina.in @@ -0,0 +1,4 @@ +## SECTION=hosttools_noprompt + +config HOST_EINA + tristate diff --git a/rules/host-eina.make b/rules/host-eina.make new file mode 100644 index 0000000..70393c6...
rmr/ptxdist-efl
ab29fcec19d3049bbc754b636c41d1d3183db2dd
[host-libjpeg] Added libjpeg to host tools.
diff --git a/rules/host-libjpeg.in b/rules/host-libjpeg.in new file mode 100644 index 0000000..20dff47 --- /dev/null +++ b/rules/host-libjpeg.in @@ -0,0 +1,4 @@ +## SECTION=hosttools_noprompt + +config HOST_LIBJPEG + tristate diff --git a/rules/host-libjpeg.make b/rules/host-libjpeg.make new file mode 100644 index 0000...
rmr/ptxdist-efl
ec696470dfd90fc89c934aa23b403662d891852a
[host-lua] Added lua to host tools.
diff --git a/rules/host-lua.in b/rules/host-lua.in new file mode 100644 index 0000000..c385367 --- /dev/null +++ b/rules/host-lua.in @@ -0,0 +1,4 @@ +## SECTION=hosttools_noprompt + +config HOST_LUA + tristate diff --git a/rules/host-lua.make b/rules/host-lua.make new file mode 100644 index 0000000..0606f08 --- /dev/nu...
rmr/ptxdist-efl
67a261d3df2c385fbd55ea4ab12d6d8a9f306a86
[edje] Added support for the efl library edje.
diff --git a/rules/edje.in b/rules/edje.in new file mode 100644 index 0000000..c671438 --- /dev/null +++ b/rules/edje.in @@ -0,0 +1,21 @@ +## SECTION=multimedia_efl + +config EDJE + tristate + prompt "edje" + select LUA + select EINA + select EET + select EVAS + select ECORE + select ECORE_FILE + select EMBRYO + help +...
rmr/ptxdist-efl
e64a65529c2726139bd9632a426195b1c4840227
[efreet] Added support for the efl library efreet.
diff --git a/rules/efreet.in b/rules/efreet.in new file mode 100644 index 0000000..bcedb28 --- /dev/null +++ b/rules/efreet.in @@ -0,0 +1,21 @@ +## SECTION=multimedia_efl + +config EFREET + tristate + select EINA + select ECORE + select ECORE_FILE + select EET + prompt "efreet" + help + An implementation of several s...
rmr/ptxdist-efl
a5754eca6c8f0443ef6790d8fc1912264d762b54
[embryo] Added support for the efl library embryo.
diff --git a/rules/embryo.in b/rules/embryo.in new file mode 100644 index 0000000..6d90c8e --- /dev/null +++ b/rules/embryo.in @@ -0,0 +1,8 @@ +## SECTION=multimedia_efl + +config EMBRYO + tristate + prompt "embryo" + help + Embryo implements a scripting language + used by other parts of the EFL, such as Edje. diff...
rmr/ptxdist-efl
fb23a844c8d32d25f2aecb0acb1091bac32eb603
[ecore] Added many of ecore's modules for loading.
diff --git a/rules/ecore.in b/rules/ecore.in index 94183cb..9a6d36c 100644 --- a/rules/ecore.in +++ b/rules/ecore.in @@ -1,24 +1,234 @@ ## SECTION=multimedia_efl menuconfig ECORE tristate "ecore " select EINA + select XORG if ECORE_XINPUT + select XORG_APP_XINPUT if ECORE_XINPUT + sele...
rmr/ptxdist-efl
f744ce8a21e310c6a45f802259af3fa842372f8c
[evas] Added support for evas library.
diff --git a/rules/evas.in b/rules/evas.in new file mode 100644 index 0000000..a4a5879 --- /dev/null +++ b/rules/evas.in @@ -0,0 +1,114 @@ +## SECTION=multimedia_efl + +menuconfig EVAS + tristate + select FREETYPE + select EINA + select FONTCONFIG if EVAS_FONTCONFIG + select LIBJPEG if EVAS_IMAGE_LOADER_LIBJPEG + sel...
rmr/ptxdist-efl
d0bf2ce4a811c43f91d1ef8d98d14a369630dfd0
[ifplugd] Added busybox generic init.d script.
diff --git a/generic/etc/ifplugd.action b/generic/etc/ifplugd.action new file mode 100644 index 0000000..552b01d --- /dev/null +++ b/generic/etc/ifplugd.action @@ -0,0 +1,30 @@ +#!/bin/sh +# $Id: ifplugd.action 99 2004-02-08 20:17:59Z lennart $ + +# This file is part of ifplugd. +# +# ifplugd is free software; you can ...
rmr/ptxdist-efl
f8624d1da1caaeb60cadcc24ae00c23ebba1c1e1
[eet] whitespace cleanups
diff --git a/rules/eet.make b/rules/eet.make index 24a5c31..4400780 100644 --- a/rules/eet.make +++ b/rules/eet.make @@ -1,69 +1,69 @@ # -*-makefile-*- # # Copyright (C) 2010 by <Ryan Raasch ryan.raasch@gmail.com> # # See CREDITS for details about who has contributed to this project. # # For further information ...
rmr/ptxdist-efl
c997f2675d2c553bfc8bde179f0d7bef1fbfd4ad
[eet] remove trailing blank line
diff --git a/rules/eet.in b/rules/eet.in index 780842a..74d5a50 100644 --- a/rules/eet.in +++ b/rules/eet.in @@ -1,37 +1,36 @@ ## SECTION=multimedia_efl menuconfig EET tristate select ZLIB select LIBJPEG select EINA select OPENSSL if EET_OPENSSL prompt "eet " help EET is ...
rmr/ptxdist-efl
22058232ecc6972c3b20fe57a4c709e561bbe522
[eet] Added support for eet library.
diff --git a/rules/eet.in b/rules/eet.in new file mode 100644 index 0000000..780842a --- /dev/null +++ b/rules/eet.in @@ -0,0 +1,37 @@ +## SECTION=multimedia_efl + +menuconfig EET + tristate + select ZLIB + select LIBJPEG + select EINA + select OPENSSL if EET_OPENSSL + prompt "eet " + help + ...
rmr/ptxdist-efl
4d5677577aef6bd7ae25dabbc4cfb94e16faa8f9
[efl] Corrected alphabetical order for menu entry.
diff --git a/rules/graphics_and_multimedia.in b/rules/graphics_and_multimedia.in index ac96a43..0d3da1a 100644 --- a/rules/graphics_and_multimedia.in +++ b/rules/graphics_and_multimedia.in @@ -1,103 +1,103 @@ ## SECTION=graphics_and_multimedia menu "directfb & friends " source "generated/multimedia_dire...
rmr/ptxdist-efl
5d9570b8e2efde4f0d679d754b04e078d4cebfc1
[eina] fix menu width
diff --git a/rules/eina.in b/rules/eina.in index 17e2417..0aee95e 100644 --- a/rules/eina.in +++ b/rules/eina.in @@ -1,43 +1,43 @@ ## SECTION=multimedia_efl menuconfig EINA tristate - prompt "eina " + prompt "eina " help Eina is the base library of all data types used ...