File tree 5 files changed +27
-5
lines changed
5 files changed +27
-5
lines changed Original file line number Diff line number Diff line change
1
+ 2012-12-07 Simson Garfinkel <simsong@Mucha.local>
2
+
3
+ * src/tcpdemux.h (class flow_addr): fixed operator< type
4
+
1
5
2012-11-17 Simson Garfinkel <simsong@npsair.local>
2
6
3
7
* src/tcpflow.cpp (usage): usage now goes to stdout and not stderr.
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
- # /bin/rm -rf aclocal.m4
3
- git submodule init
4
- git submodule update
2
+
3
+ # Hopefully you checked out with git clone --recursive git@github.com:simsong/tcpflow.git
4
+
5
+ if [ ! -d src/be13_api ] ;
6
+ then
7
+ echo bringing in submodules
8
+ echo next time check out with git clone --recursive
9
+ git submodule init
10
+ git submodule update
11
+ fi
5
12
aclocal
6
13
autoreconf
7
14
automake --add-missing
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ # http://stackoverflow.com/questions/5828324/update-git-submodule
3
+ # pull root and subprojects
4
+ git pull
5
+ for dir in src/be13_api
6
+ do
7
+ pushd $dir
8
+ git checkout master
9
+ git pull
10
+ popd
11
+ done
Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ class flow_addr {
208
208
if (this ->dport <b.dport ) return true ;
209
209
if (this ->dport >b.dport ) return false ;
210
210
if (this ->family < b.family ) return true ;
211
- if (this ->family > b.family ) return true ;
211
+ if (this ->family > b.family ) return false ;
212
212
return false ; /* they are equal! */
213
213
}
214
214
};
You can’t perform that action at this time.
0 commit comments