mirror of
https://github.com/fpagliughi/sockpp.git
synced 2026-01-12 00:04:45 +08:00
Added a TCP client sample Fixed the 'is_connected' functionality of tcp_client. Checking the return value of all system calls and setting last_error accordingly. Changed return value to bool for methods that return binary suceed/fail (from int 0/-1).
10 lines
143 B
Bash
Executable File
10 lines
143 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Sets up the development environment for the sockpp library.
|
|
#
|
|
|
|
export SOCKPP_DIR=$PWD
|
|
|
|
export LD_LIBRARY_PATH=${SOCKPP_DIR}/lib
|
|
|