1
0
mirror of https://github.com/agdsn/xerxes.git synced 2026-06-19 21:58:01 +00:00

working on programm_options

the plan is to call the program for
each source, for example:
  xerxes --src tcp:127.0.0.1:3306 --dst tcp:anywhere:3306
  xerxes --src unix:/path/to/socket --dst tcp:anywhere:3306
but its a lot to do
This commit is contained in:
Jan Losinshi
2008-08-22 01:54:00 +02:00
parent b64a998544
commit 2dacef4bc0
2 changed files with 98 additions and 1 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ OBJECTS=xerxes.cxx socket.cxx epoll.cxx
BIN=xerxes
$(BIN): $(OBJECTS)
g++ -o $(BIN) $(OBJECTS) -Wall -pedantic -ggdb
g++ -o $(BIN) $(OBJECTS) -Wall -pedantic -ggdb -lboost_regex -lboost_program_options
all: $(BIN)