Starting from:

$25

NetworkProgramming - Network Programming  - Homework 1 - Bulletin Board System - Solved

Part 1 

Description
In this project, you are asked to design Bulletin Board System (BBS) server. Your program should be able to handle multiple connections and receive user command from standard input. After receiving command, the server send the corresponding message back.  

Requirement
The service accepts the following commands and at least 10 clients:

When client enter command incompletely E.g., missing parameters, the server should show command format for client.

 

General
Please make sure you develop your program on Linux. For development environment, you can just apply NCTU CSCC account to use Linux workstation. If you don’t want to apply anything, you can use VM for develop.

Use ‘’% “ as the command line prompt. Notice that there is only one space after the prompt.

The server close connection if client use exit command, but server still running and client can connect again.  

For manage user information, storing data in your server is necessary. Therefore, you must have some methods to handle this, like manage a simple database e.g. SQLite and then design tables by yourself or only use data structure to store data.  

To run your server, you must to provide port number for your program. E.g., bash$ ./server 7890

Now, you can use telnet or other client program to connect your server, when client connect to server, the server print message “New connection.”

Assume your server is running on localhost and listening at port 7890. E.g., bash$ telnet 127.0.0.1 7890

Scenario
bash$ telnet 127.0.0.1 7890 

******************************** 

** Welcome to the BBS server. ** ******************************** 

% register 

Usage: register <username> <email> <password> 

% register Bob bob@qwer.asdf 123456 Register successfully. 

% register Bob asdf@asdf.asdf 123456 

Username is already used. 

% login 

Usage: login <username> <password> 

% login Bob 

Usage: login <username> <password> 

% login Bob 654321 Login failed. 

% login Tom 654321 Login failed. 

% login Bob 123456 Welcome, Bob. 

% login Bob 123456 

Please logout first. 

% whoami 

Bob 

% logout 

Bye, Bob. 

% logout 

Please login first. % whoami 

Please login first. 

% exit 

More products