C代写 代写IRC(Internet Relay Chat), 网络编程 CS240 IRC Server代做C/C++

 

Before the Lab

Study in the slides the C++ material

Step 1. Setting up Your Environment

Remote login to data by typing:

ssh lt;your-user-namegt;@data.cs

Change to the directory ~/cs240 that you created previously.

cd
cd cs240

Now copy the initial lab10 files by typing:

tar -xvf /homes/cs240/lab10-irc-server/lab10-src.tar
cd lab10-src

Step 2. Using Telnet as a Tool to Debug Network Applications

The telnet program was initially implemented to connect to computers remotely. Since telnet passes the passwords as plain text through the network, ssh is now used instead of telnet to connect to computers remotely. Telnet is still used to debug network applications. Telnet uses the following arguments:

telnet lt;hostgt; lt;portgt;

where lt;hostgt; is the name of the host and the lt;portgt; is the port number that the server uses. A lt;portgt; is a number that identifies an endpoint program in the server.

For example run the following command to connect to a time server:

$telnet time-A.timefreq.bldrdoc.gov 13       ← Type this
Trying 132.163.4.101...
Connected to time-A.timefreq.bldrdoc.gov.
Escape character is apos;^]apos;.

57112 15-03-31 01:57:32 50 0 0 360.9 UTC(NIST) *
Connection closed by foreign host.

Also, you may use telnet to connect to a HTTP server:

$ telnet google.com 80 ← Type this
Trying 74.125.225.0...
Connected to google.com.
Escape character is apos;^]apos;.
GET / HTTP/1.0      ← Type this without back spaces and then type enter twice.

HTTP/1.0 200 OK   ← This is the HTTP response with the initial HTML document.
Date: Tue, 31 Mar 2015 01:59:09 GMT
Expires: -1
Cache-Control: private, max-age=0
Content-Type: text/html; charset=ISO-8859-1
Set-Cookie: PREF=ID=3ad8cbe7ea26c3f7:FF=0:TM=1427767149:LM=1427767149:S=Y3nU9IMxxYhPNmNt; expires=Thu, 30-Mar-2017 01:59:09 GMT; path=/; domain=.google.com

You also may use telnet to connect and debug to other network applications.

In this step use these two telnet commands to connect to a time server and a HTTP server.

You will also use telnet to test your IRC server before you implement the IRC client.

Step 3. Running the Initial Server

After typing make run the IRCServer. Choose for a port a random number 1024 lt; port lt; 65536.

In one window run the server and type:

$ ./IRCServer 2030

In a separate window run telnet to connect to the server.

$ telnet data.cs 2030
ADD-USER peterparker abc123 ← Type a command and arguments.

The server will display:

$ ./IRCServer 2030
RECEIVED: ADD-USER peterparker abc123
The commandLine has the following format:
COMMAND lt;usergt; lt;passwordgt; lt;argumentsgt;. See below.
You need to separate the commandLine into those components
For now, command, user, and password are hardwired.
command=ADD-USER
user=peter
password=spider
args=

You will need to parse the line received and separate it into user, password and argument.Then you will implement the different functions that make the IRC server.

Step4. Implementing the IRC Server

The IRC server will have multiple chat rooms and the users can enter a room and type messages. The messages will be seen by all the users in the room. Only users who have entered a room can post messages in the room.

Here is a typical conversation with the server.

In one window run the IRC server. Choose a different port number since it has to be unique across other programs using sockets in the same machine.

$ ./IRCServer 2030

In another window connect to the server. You could also run the telnet command in a completely different machine or even from a laptop that has telnet/putty installed.

$telnet data.cs 2030
ADD-USER superman clarkkent← Type this to add a user “peter” with password “abcabc”
OK ← Server sends back OK
Connection closed by foreign host.

$telnet data.cs 2030
ADD-USER spiderman peterparker
OK
Connection closed by foreign host.

$telnet data.cs 2030
GET-ALL-USERS superman clarkkent
superman
spiderman
Connection closed by foreign host.

You will implement the following functions in the server:

Request: ADD-USER lt;USERgt; lt;PASSWDgt;\r\n
Answer: OK\r\n or DENIED\r\n

Request: GET-ALL-USERS lt;USERgt; lt;PASSWDgt;\r\n
Answer: USER1\r\n
        USER2\r\n
        ...
        \r\n
        or
        DENIED\r\n

Request: CREATE-ROOM lt;USERgt; lt;PASSWDgt; lt;ROOMgt;\r\n
Answer: OK\n or DENIED\r\n

Request: LIST-ROOMS lt;USERgt; lt;PASSWDgt;\r\n
Answer: room1\r\n
        room2\r\n
        ...
        \r\n
        or
        DENIED\r\n

Request: ENTER-ROOM lt;USERgt; lt;PASSWDgt; lt;ROOMgt;\r\n
Answer: OK\n or DENIED\r\n

Request: LEAVE-ROOM lt;USERgt; lt;PASSWDgt; lt;ROOMgt;\r\n
Answer: OK\n or DENIED\r\n

Request: SEND-MESSAGE lt;USERgt; lt;PASSWDgt; lt;ROOMgt; lt;MESSAGEgt;\n
Answer: OK\n or DENIED\n

Request: GET-MESSAGES lt;USERgt; lt;PASSWDgt; lt;LAST-MESSAGE-NUMgt; lt;ROOMgt;\r\n
Answer: MSGNUM1 USER1 MESSAGE1\r\n
        MSGNUM2 USER2 MESSAGE2\r\n
        MSGNUM3 USER2 MESSAGE3\r\n
        ...\r\n
        \r\n
        or
        DENIED\r\n

Request: GET-USERS-IN-ROOM lt;USERgt; lt;PASSWDgt; lt;ROOMgt;\r\n
Answer: USER1\r\n
        USER2\r\n
        …
        \r\n
        or
        DENIED\r\n

You will have to test your server using the telnet command.

Your chat room needs to implement the following constraints:

  • Usernames are unique
  • Room names are unique
  • Only users in the room can post messages.
  • User needs password for all operations
  • Only a maximum of 100 messages are saved in any room. Newer messages will replace older messages.

You are welcome to use in this project strings, hashmaps, vectors etc from the C++ STL (Standard Template Library).

In lab11 you will implement the client program that will talk to the IRCServer.

Step 5. Turning In your Project

Follow these instructions to turn in lab10:

Login to data.cs and type
cd cs240
turnin -c cs240 -v -p lab10 lab10-src

热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图