Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ###### UCSPI-TCP6
- ( cat warn-auto.sh; \
- echo 'main="$1"; shift'; \
- echo exec "`head -1 ../conf-ld`" \
- '-o "$main" "$main".o ${1+"$@"} -ldnsresolv -lqlibs' \
- ) > load
- chmod 755 load
- ( cat warn-auto.sh; \
- echo exec "`head -1 ../conf-cc`" '-c ${1+"$@"}' \
- ) > compile
- chmod 755 compile
- rm -f choose
- cat warn-auto.sh choose.sh \
- | sed s}HOME}"`head -1 ../conf-home`"}g \
- > choose
- chmod 755 choose
- ./choose cl tryvfork fork.h1 fork.h2 > fork.h
- ./compile tcpserver.c remoteinfo.h
- tcpserver.c: In function ‘main’:
- tcpserver.c:415:30: warning: passing argument 2 of ‘getoptb’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
- 415 | while ((opt = getoptb(argc,argv,"146dDvqQhHrRUXx:y:t:u:g:l:b:B:c:I:pPoO")) != opteof) {
- | ^~~~
- In file included from tcpserver.c:22:
- /usr/local/include/getoptb.h:20:24: note: expected ‘char **’ but argument is of type ‘char * const*’
- 20 | extern int getoptb(int,char **,char *);
- | ^~~~~~~
- tcpserver.c:606:9: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
- 606 | if (maxconip) ipchild_clear(remoteip); --numchildren;
- | ^~
- tcpserver.c:606:48: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’
- 606 | if (maxconip) ipchild_clear(remoteip); --numchildren;
- | ^~
- tcpserver.c:472:5: warning: ‘uint16_unpack_big’ accessing 16 bytes in a region of size 4 [-Wstringop-overflow=]
- 472 | uint16_unpack_big((char*)&se->s_port,&localport);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- tcpserver.c:472:5: note: referencing argument 1 of type ‘char[16]’
- In file included from tcpserver.c:5:
- /usr/local/include/uint_t.h:34:13: note: in a call to function ‘uint16_unpack_big’
- 34 | extern void uint16_unpack_big(char [16],uint16 *);
- | ^~~~~~~~~~~~~~~~~
- tcpserver.c:472:5: warning: ‘uint16_unpack_big’ accessing 16 bytes in a region of size 4 [-Wstringop-overflow=]
- 472 | uint16_unpack_big((char*)&se->s_port,&localport);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- tcpserver.c:472:5: note: referencing argument 1 of type ‘char[16]’
- /usr/local/include/uint_t.h:34:13: note: in a call to function ‘uint16_unpack_big’
- 34 | extern void uint16_unpack_big(char [16],uint16 *);
- | ^~~~~~~~~~~~~~~~~
- tcpserver.c:472:5: warning: ‘uint16_unpack_big’ accessing 16 bytes in a region of size 4 [-Wstringop-overflow=]
- 472 | uint16_unpack_big((char*)&se->s_port,&localport);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- tcpserver.c:472:5: note: referencing argument 1 of type ‘char[16]’
- /usr/local/include/uint_t.h:34:13: note: in a call to function ‘uint16_unpack_big’
- 34 | extern void uint16_unpack_big(char [16],uint16 *);
- | ^~~~~~~~~~~~~~~~~
- ./compile remoteinfo.c
- remoteinfo.c:97:35: warning: argument 2 of type ‘char[16]’ with mismatched bound [-Warray-parameter=]
- 97 | int remoteinfo(stralloc *out,char ipremote[16],uint16 portremote,char iplocal[16],uint16 portlocal,unsigned int timeout,uint32 netif)
- | ~~~~~^~~~~~~~~~~~
- In file included from remoteinfo.c:10:
- remoteinfo.h:7:34: note: previously declared as ‘char *’
- 7 | extern int remoteinfo(stralloc *,char *,uint16,char *,uint16,unsigned int,uint32);
- | ^~~~~~
- remoteinfo.c:97:71: warning: argument 4 of type ‘char[16]’ with mismatched bound [-Warray-parameter=]
- 97 | int remoteinfo(stralloc *out,char ipremote[16],uint16 portremote,char iplocal[16],uint16 portlocal,unsigned int timeout,uint32 netif)
- | ~~~~~^~~~~~~~~~~
- remoteinfo.h:7:48: note: previously declared as ‘char *’
- 7 | extern int remoteinfo(stralloc *,char *,uint16,char *,uint16,unsigned int,uint32);
- | ^~~~~~
- ./compile rules.c ip4_bit.c ip6_bit.c
- ( ( ./compile trylsock.c && \
- ./load trylsock -lsocket -lnsl ) >/dev/null 2>&1 \
- && echo -lsocket -lnsl || exit 0 ) > socket.lib
- rm -f trylsock.o trylsock
- ./load tcpserver rules.o remoteinfo.o ip4_bit.o ip6_bit.o \
- `cat socket.lib`
- ./compile tcprules.c
- ./load tcprules ip4_bit.o ip6_bit.o
- ./compile tcprulescheck.c
- ./load tcprulescheck rules.o ip4_bit.o ip6_bit.o
- ./compile argv0.c
- ./load argv0
- ./compile recordio.c
- ./load recordio
- ./compile tcpclient.c
- tcpclient.c: In function ‘main’:
- tcpclient.c:89:30: warning: passing argument 2 of ‘getoptb’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
- 89 | while ((opt = getoptb(argc,argv,"46dDvqQhHrRi:p:t:T:l:I:")) != opteof)
- | ^~~~
- In file included from tcpclient.c:7:
- /usr/local/include/getoptb.h:20:24: note: expected ‘char **’ but argument is of type ‘char * const*’
- 20 | extern int getoptb(int,char **,char *);
- | ^~~~~~~
- tcpclient.c:130:5: warning: ‘uint16_unpack_big’ accessing 16 bytes in a region of size 4 [-Wstringop-overflow=]
- 130 | uint16_unpack_big((char *)&se->s_port,&portremote);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- tcpclient.c:130:5: note: referencing argument 1 of type ‘char[16]’
- In file included from tcpclient.c:8:
- /usr/local/include/uint_t.h:34:13: note: in a call to function ‘uint16_unpack_big’
- 34 | extern void uint16_unpack_big(char [16],uint16 *);
- | ^~~~~~~~~~~~~~~~~
- tcpclient.c:130:5: warning: ‘uint16_unpack_big’ accessing 16 bytes in a region of size 4 [-Wstringop-overflow=]
- 130 | uint16_unpack_big((char *)&se->s_port,&portremote);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- tcpclient.c:130:5: note: referencing argument 1 of type ‘char[16]’
- /usr/local/include/uint_t.h:34:13: note: in a call to function ‘uint16_unpack_big’
- 34 | extern void uint16_unpack_big(char [16],uint16 *);
- | ^~~~~~~~~~~~~~~~~
- tcpclient.c:130:5: warning: ‘uint16_unpack_big’ accessing 16 bytes in a region of size 4 [-Wstringop-overflow=]
- 130 | uint16_unpack_big((char *)&se->s_port,&portremote);
- | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- tcpclient.c:130:5: note: referencing argument 1 of type ‘char[16]’
- /usr/local/include/uint_t.h:34:13: note: in a call to function ‘uint16_unpack_big’
- 34 | extern void uint16_unpack_big(char [16],uint16 *);
- | ^~~~~~~~~~~~~~~~~
- ./load tcpclient remoteinfo.o `cat socket.lib`
- rm -f who@
- cat warn-auto.sh [email protected] \
- | sed s}HOME}"`head -1 ../conf-home`"}g \
- > who@
- chmod 755 who@
- rm -f date@
- cat warn-auto.sh [email protected] \
- | sed s}HOME}"`head -1 ../conf-home`"}g \
- > date@
- chmod 755 date@
- rm -f finger@
- cat warn-auto.sh [email protected] \
- | sed s}HOME}"`head -1 ../conf-home`"}g \
- > finger@
- chmod 755 finger@
- rm -f http@
- cat warn-auto.sh [email protected] \
- | sed s}HOME}"`head -1 ../conf-home`"}g \
- > http@
- chmod 755 http@
- rm -f tcpcat
- cat warn-auto.sh tcpcat.sh \
- | sed s}HOME}"`head -1 ../conf-home`"}g \
- > tcpcat
- chmod 755 tcpcat
- rm -f mconnect
- cat warn-auto.sh mconnect.sh \
- | sed s}HOME}"`head -1 ../conf-home`"}g \
- > mconnect
- chmod 755 mconnect
- ./compile mconnect-io.c
- ./load mconnect-io
- ./compile addcr.c
- ./load addcr
- ./compile delcr.c
- ./load delcr
- ./compile fixcrio.c
- ./load fixcrio
- ./compile rblsmtpd.c
- rblsmtpd.c: In function ‘main’:
- rblsmtpd.c:294:30: warning: passing argument 2 of ‘getoptb’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
- 294 | while ((opt = getoptb(argc,argv,"bBcCit:r:a:w:W")) != opteof)
- | ^~~~
- In file included from rblsmtpd.c:10:
- /usr/local/include/getoptb.h:20:24: note: expected ‘char **’ but argument is of type ‘char * const*’
- 20 | extern int getoptb(int,char **,char *);
- | ^~~~~~~
- rblsmtpd.c: At top level:
- rblsmtpd.c:101:17: warning: ‘cn’ defined but not used [-Wunused-variable]
- 101 | static stralloc cn; /* defined if lookup return CNAME */
- | ^~
- ./compile commands.c
- ./load rblsmtpd commands.o `cat socket.lib`
- ( cat warn-auto.sh; \
- echo CC=\'`head -1 ../conf-cc`\'; \
- echo LD=\'`head -1 ../conf-ld`\'; \
- cat find-systype.sh; \
- ) | sh > systype
- ./choose cl trysgact hassgact.h1 hassgact.h2 > hassgact.h
- ./choose cl trysgprm hassgprm.h1 hassgprm.h2 > hassgprm.h
- ./compile chkshsgr.c
- ./load chkshsgr
- ./chkshsgr || ( cat warn-shsgr; exit 1 )
- ./choose clr tryshsgr hasshsgr.h1 hasshsgr.h2 > hasshsgr.h
- rm -f sysdeps
- cat systype compile load >> sysdeps
- grep sysdep hassgact.h >> sysdeps
- grep sysdep hassgprm.h >> sysdeps
- grep sysdep hasshsgr.h >> sysdeps
- package/upgrade: symlink ucspi-tcp6 -> ucspi-tcp6-1.13.04
- package/upgrade: linking command addcr into /usr/local/bin
- package/upgrade: linking command argv0 into /usr/local/bin
- package/upgrade: linking command delcr into /usr/local/bin
- package/upgrade: linking command fixcrio into /usr/local/bin
- package/upgrade: linking command mconnect into /usr/local/bin
- package/upgrade: linking command mconnect-io into /usr/local/bin
- package/upgrade: linking command rblsmtpd into /usr/local/bin
- package/upgrade: linking command recordio into /usr/local/bin
- package/upgrade: linking command tcpcat into /usr/local/bin
- package/upgrade: linking command tcpclient into /usr/local/bin
- package/upgrade: linking command tcprules into /usr/local/bin
- package/upgrade: linking command tcprulescheck into /usr/local/bin
- package/upgrade: linking command tcpserver into /usr/local/bin
- package/upgrade: linking command date@ into /usr/local/bin
- package/upgrade: linking command finger@ into /usr/local/bin
- package/upgrade: linking command http@ into /usr/local/bin
- package/upgrade: linking command who@ into /usr/local/bin
- package/man: Setting manual man-dir: /usr/share/man.
- nroff -man addcr.1 > addcr.0
- nroff -man argv0.1 > argv0.0
- nroff -man [email protected] > [email protected]
- nroff -man delcr.1 > delcr.0
- nroff -man [email protected] > [email protected]
- nroff -man fixcrio.1 > fixcrio.0
- nroff -man [email protected] > [email protected]
- nroff -man mconnect.1 > mconnect.0
- nroff -man rblsmtpd.1 > rblsmtpd.0
- troff: rblsmtpd.1:207: warning [p 2, 8.7i]: can't break line
- nroff -man recordio.1 > recordio.0
- nroff -man tcpcat.1 > tcpcat.0
- nroff -man tcpclient.1 > tcpclient.0
- nroff -man tcprules.1 > tcprules.0
- nroff -man tcprulescheck.1 > tcprulescheck.0
- nroff -man tcpserver.1 > tcpserver.0
- nroff -man [email protected] > [email protected]
- nroff -man tcp-environ.5 > tcp-environ.0
- package/man: Installing ucspi-tcp6 compressed man-files in /usr/share/man.
- package/man: Installing ucspi-tcp6 nroff'ed man-files in /usr/share/man/catX.
Advertisement
Add Comment
Please, Sign In to add comment