strongswan.org
Wiki/Project Management
Downloads
Gitweb
projects
/
strongswan.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
added chunk_from_thing() macro
[strongswan.git]
/
src
/
charon
/
debug
1
#!/bin/bash
2
CMD=`tempfile`
3
LOG="debug.log"
4
ipsec start --nofork 2>&1 > $LOG &
5
sleep 1
6
echo >> $LOG
7
echo >> $LOG
8
echo >> $LOG
9
echo "c" > $CMD
10
gdb -batch /usr/local/libexec/ipsec/charon `cat /var/run/charon.pid ` -x $CMD 2>&1 >> $LOG
11
ipsec stop
12
rm $CMD