* contrib/hbtip/tests/upld_ftp.prg
* contrib/rddads/tests/datad.prg
* contrib/rddads/tests/testmg.prg
* function main() -> procedure main() + cleanup
* contrib/rddads/tests/datad.prg
* contrib/rddads/tests/testmg.prg
* contrib/rddads/doc/en/adsfuncs.txt
* contrib/rddads/doc/en/readme.txt
* formatted (hbformat, manual)
* fixes
* src/rtl/gtxwc/gtxwc.h
* src/rtl/gtxwc/gtxwc.c
* src/rtl/hbmd5.c
* contrib/gtwvg/tests/demowvg.prg
* contrib/gtwvg/tests/wvgdyndialogs.prg
* contrib/gtwvg/tests/wvgwvtclasses.prg
* contrib/hbtip/thtml.prg
* contrib/hbtip/tests/loadhtml.prg
* tests/server.prg
* examples/hbvpdf/hbvpdft.prg
* Using 'harbour' name in outputs and some comments
* src/rdd/dbcmd.c
* typo
140 lines
3.3 KiB
Plaintext
140 lines
3.3 KiB
Plaintext
/*
|
|
* $Id$
|
|
*/
|
|
|
|
***************************************************
|
|
* Harbour Inet demo server program
|
|
*
|
|
* Giancarlo Niccolai
|
|
*
|
|
* In this program, the server uses just one thread
|
|
* to demonstrate how to use timeout sockets.
|
|
*
|
|
|
|
PROCEDURE Main( cPort )
|
|
LOCAL Socket, s
|
|
LOCAL nResponse, cResponse
|
|
LOCAL nTurn := 0, nTurn1 := 0
|
|
LOCAL CRLF := hb_InetCRLF()
|
|
LOCAL bCont := .T.
|
|
|
|
CLS
|
|
|
|
IF Empty( cPort )
|
|
cPort := "2000"
|
|
ENDIF
|
|
|
|
hb_InetInit()
|
|
|
|
@ 1, 15 SAY "H A R B O U R - Inet Api Server Demo"
|
|
@ 2, 5 SAY "Contact this server using telnet or the Harbour Inet Client demo"
|
|
@ 3, 5 SAY "Press a [KEY] to terminate the program"
|
|
@ 5, 5 SAY "Server listening on port " + cPort + "..."
|
|
Socket := hb_InetServer( Val( cPort ) )
|
|
hb_InetTimeout( Socket, 500 )
|
|
|
|
DO WHILE bCont
|
|
|
|
@ 6, 5 SAY Space( 70 )
|
|
@ 7, 5 SAY Space( 70 )
|
|
@ 8, 5 SAY Space( 70 )
|
|
@ 9, 5 SAY Space( 70 )
|
|
@ 6, 5
|
|
|
|
* Accepting a connection
|
|
DO WHILE bCont
|
|
Progress( @nTurn, 5, 39 )
|
|
s := hb_InetAccept( Socket )
|
|
IF hb_InetErrorCode( Socket ) == 0
|
|
EXIT
|
|
ENDIF
|
|
IF Inkey() != 0
|
|
bCont := .f.
|
|
ENDIF
|
|
ENDDO
|
|
|
|
IF ! bCont
|
|
EXIT
|
|
ENDIF
|
|
|
|
hb_InetTimeout( s, 500 )
|
|
|
|
@ 6, 5 SAY "Connection from: " + hb_InetAddress( s ) + ":" + Str( hb_InetPort( s ), 5 )
|
|
@ 7, 5 SAY "Receiving: "
|
|
@ 8, 5
|
|
|
|
nResponse := hb_InetSend( s, "Welcome to my server!" + CRLF )
|
|
|
|
DO WHILE bCont
|
|
// This timeout ...
|
|
hb_InetTimeout( s, 250 )
|
|
// ... will trigger this periodic callback,
|
|
hb_InetPeriodCallback( s, { @Progress(), @nTurn, 6, 39 } )
|
|
// that will be called each TIMEOUT Milliseconds.
|
|
cResponse := hb_InetRecvLine( s, @nResponse )
|
|
// hb_InetRecvLine won't return until the periodic callback returns .F.,
|
|
// or the Timelimit has been reached. Timelimit is currently -1, so
|
|
// hb_InetRecvLine will wait forever.
|
|
|
|
DO CASE
|
|
CASE hb_InetErrorCode( s ) == 0
|
|
IF Lower( cResponse ) == "quit"
|
|
bCont := .F.
|
|
ENDIF
|
|
@ 8, 5 SAY space(70)
|
|
@ 8, 5 SAY cResponse
|
|
cResponse := "Count: " + Str( nResponse ) + " characters" + CRLF
|
|
hb_InetSend( s, cResponse )
|
|
|
|
CASE hb_InetErrorCode( s ) == -1
|
|
* idle (timed out)
|
|
Progress( @nTurn1, 7, 17 )
|
|
|
|
OTHERWISE
|
|
@7, 5 SAY "Received Error " + Str( hb_InetErrorCode( s ) ) + ": " + hb_InetErrorDesc( s )
|
|
@ 8, 5 SAY space(70)
|
|
@ 9, 5 SAY space(70)
|
|
@ 9, 5 SAY "Press a key to continue"
|
|
Inkey( 0 )
|
|
EXIT
|
|
|
|
END CASE
|
|
|
|
IF Inkey() != 0
|
|
bCont := .f.
|
|
ENDIF
|
|
ENDDO
|
|
ENDDO
|
|
|
|
hb_InetCleanup()
|
|
|
|
RETURN
|
|
|
|
|
|
PROCEDURE Progress( nProgress, nDrow, nDcol )
|
|
|
|
LOCAL nRow := Row(), nCol := Col()
|
|
|
|
@ nDrow, nDcol SAY "[ ]"
|
|
|
|
DO CASE
|
|
CASE nProgress = 0
|
|
@ nDrow, nDcol + 1 SAY "-"
|
|
CASE nProgress = 1
|
|
@ nDrow, nDcol + 1 SAY "\"
|
|
CASE nProgress = 2
|
|
@ nDrow, nDcol + 1 SAY "|"
|
|
CASE nProgress = 3
|
|
@ nDrow, nDcol + 1 SAY "/"
|
|
ENDCASE
|
|
|
|
nProgress++
|
|
|
|
IF nProgress == 4
|
|
nProgress := 0
|
|
ENDIF
|
|
|
|
@ nRow, nCol
|
|
|
|
RETURN
|