SportsTracker 3.6.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News SportsTracker 3.6.0 (Default branch)
# 1  
Old 12-22-2008
SportsTracker 3.6.0 (Default branch)

ImageSportsTracker is an application for recording sporting activities. It is not bound to a specific kind of sport, as categories can be created for all sport types, such as cycling, running, or tennis. The main advantages are the good overview of your exercises and the easy creation of exercise statistics for specific time ranges and sport types. Users of heart rate monitors (Polar and CicloSport) can import, display (including diagrams), and organize the recorded exercise data.License: GNU General Public License (GPL)Changes:
The biggest improvement is drag and drop support of recorded exercise files to the calendar view; the import of recorded data is done much faster now. The calendar now displays exercise tooltips with further information. All diagrams scale correctly and use proper system fonts. Full builds (Ant) can also be done without the NetBeans IDE. The Czech and French translations have been updated.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
libssh2_channel_direct_tcpip_ex(3)				  libssh2 manual				libssh2_channel_direct_tcpip_ex(3)

NAME
libssh2_channel_direct_tcpip_ex - Tunnel a TCP connection through an SSH session SYNOPSIS
#include <libssh2.h> LIBSSH2_CHANNEL * libssh2_channel_direct_tcpip_ex(LIBSSH2_SESSION *session, const char *host, int port, const char *shost, int sport); LIBSSH2_CHANNEL * libssh2_channel_direct_tcpip(LIBSSH2_SESSION *session, const char *host, int port); DESCRIPTION
session - Session instance as returned by libssh2_session_init_ex(3) host - Third party host to connect to using the SSH host as a proxy. port - Port on third party host to connect to. shost - Host to tell the SSH server the connection originated on. sport - Port to tell the SSH server the connection originated from. Tunnel a TCP/IP connection through the SSH transport via the remote host to a third party. Communication from the client to the SSH server remains encrypted, communication from the server to the 3rd party host travels in cleartext. RETURN VALUE
Pointer to a newly allocated LIBSSH2_CHANNEL instance, or NULL on errors. ERRORS
LIBSSH2_ERROR_ALLOC - An internal memory allocation call failed. SEE ALSO
libssh2_session_init_ex(3) libssh2 0.15 1 Jun 2007 libssh2_channel_direct_tcpip_ex(3)