https://github.com/carissaallen/irc
Internet Relay Chat (IRC) network application
https://github.com/carissaallen/irc
internet-protocol irc java-11 maven socket-programming
Last synced: 2 months ago
JSON representation
Internet Relay Chat (IRC) network application
- Host: GitHub
- URL: https://github.com/carissaallen/irc
- Owner: carissaallen
- License: mit
- Created: 2019-10-08T20:46:13.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-06T22:05:38.000Z (over 5 years ago)
- Last Synced: 2025-02-10T21:36:40.755Z (4 months ago)
- Topics: internet-protocol, irc, java-11, maven, socket-programming
- Language: Java
- Size: 304 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Internet Relay Chat
> A simple Internet Relay Chat (IRC) protocol by which clients can communicate with each other.[](https://travis-ci.com/carissaallen/irc)
This communication system employs a central server which _relays_ messages to other connected users. Users can join rooms, which are groups of users that are subscribed to the same message stream. Any message sent to that room is forwarded to all users currently joined to that room.
Users can also send private messages directly to other users.
## Install & Run
Clone the repository:
```
[email protected]:carissaallen/irc.git
```Build the application:
```
mvn clean verify
```#### Run
1. Start the server: `Run 'Server.main()'`
2. Enter a valid port number and click "Start Server"
3. Start the client: `Run 'Client.main()'`
4. Enter a username and click "Connect to Server"
5. To connect multiple clients to the server, repeat Steps 3-4.Note: If you're running this application in IntelliJ, go to Edit Configuration, and make sure "Allow parallel run" is checked in order to connect multiple clients to the server.
## Technology
* JDK 11
* Maven## Testing
Testing was not implemented for this iteration.
## Credits
The RFC document was based on [this](https://github.com/carissaallen/irc/blob/master/docs/Sample_RFC.pdf) example provided by the instructor.
## Built By
* **Mack Cooper** - [@mackkcooper](https://github.com/mackkcooper)
* **Carissa Allen** - [@carissaallen](https://github.com/carissaallen)
## License
Distributed under the MIT License. See [LICENSE](/LICENSE) for more information.