fix query roster

process subscription="remove" roster
improve roster process
This commit is contained in:
Jesse Kuang
2019-01-09 17:35:00 +08:00
parent 2c5079ea28
commit c18873b880
4 changed files with 139 additions and 19 deletions

31
GNUmakefile Normal file
View File

@@ -0,0 +1,31 @@
#
# Makefile for hookAPI
#
# switches:
# define the ones you want in the CFLAGS definition...
#
# TRACE - turn on tracing/debugging code
#
#
#
#
# Version for distribution
VER=1_0r1
MAKEFILE=GNUmakefile
# We Use Compact Memory Model
all: bin/example
@[ -d bin ] || exit
bin/example: _example/example.go xmpp.go
@[ -d bin ] || mkdir bin
go build -o $@ _example/example.go
@strip $@ || echo "example OK"
clean:
distclean: clean
@rm -rf bin