The IANA (Internet Assigned Numbers Authority) http://www.iana.org assigns numbers. Their page
http://www.iana.org/assignments/port-numbers lists the assignments for ports 1 - 49152 and their official and sometimes unofficial use.
The mvprintw(3Curses) function allows you to position the cursor to x y coordinates and print a string in the window using the C printf(3C) syntax.
#include <curses.h>
main()
{
char user_name[64];
initscr();
mvprintw(12, 30, "Center of the screen");
mvprintw(LINES -...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.