Skip to content

Commit

Permalink
Add ippdiscover(y)
Browse files Browse the repository at this point in the history
  • Loading branch information
attah committed Oct 29, 2024
1 parent 90a51a1 commit 5c9d644
Show file tree
Hide file tree
Showing 11 changed files with 619 additions and 5 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ SILLY_CLANG_FLAGS = -Wno-unqualified-std-cast-call

VPATH = bytestream lib utils json11

OFFICIAL = ppm2pwg pwg2ppm pdf2printable baselinify ippclient
OFFICIAL = ppm2pwg pwg2ppm pdf2printable baselinify ippclient ippdiscover
EXTRAS = hexdump ippdecode bsplit

all: $(OFFICIAL) $(EXTRAS)
Expand Down Expand Up @@ -61,8 +61,11 @@ ippclient: ippmsg.o ippattr.o ippprinter.o ippprintjob.o printparameters.o ippcl
minimime: minimime_main.o minimime.o bytestream.o
$(CXX) $^ $(LDFLAGS) -o $@

ippdiscover: ippdiscover_main.o ippdiscovery.o bytestream.o
$(CXX) $^ $(LDFLAGS) -o $@

clean:
rm -f *.o ppm2pwg pwg2ppm pdf2printable pdf2printable_mad hexdump baselinify baselinify_mad bsplit ippclient minimime fuzz
rm -f *.o $(OFFICIAL) $(EXTRAS)

analyze:
$(CLANGXX) --analyze $(CXXFLAGS) $(SILLY_CLANG_FLAGS) lib/*.cpp utils/*.cpp
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ An IPP client that harnesses the above tools for converting files to be printed.
This is a port/rewrite/clean-up of the core parts of SeaPrint in regular (non-Qt) C++.
The plan is to swap over to using this once fature parity is achieved.

## ippdiscover

A DNS-SD/mDNS "simple resolver" which looks for ipp and ipps printers on the local network.

## Building

Install dependencies:
Expand Down
2 changes: 1 addition & 1 deletion bytestream
Loading

0 comments on commit 5c9d644

Please sign in to comment.