All Questions
14 questions
4
votes
4
answers
2k
views
Unix chat server making communication between terminals possible
This Server handles clients communicating with each other. Because I was not willing to actually give every client a name, they are named by their socket's file descriptor. This is my first ...
4
votes
1
answer
4k
views
Socket chat room made with Tkinter Python
This is a real live chatroom that I have made with Tkinter
I posted a question before about making a chatroom but the problem that I had with that one was that only one user could connect to the ...
6
votes
2
answers
3k
views
Socket chat room in Python
This is a Python chat room that I've been working on and it enables to you to chat to other people on the same network through Python.
Server.py:
...
5
votes
2
answers
2k
views
Simple multithreaded chat server in Rust
I'm trying to develop a simple Rust chat server. I'm not a Rust expert and come from Java and Kotlin.
This same server in Kotlin is:
...
2
votes
0
answers
101
views
Small IRC library w/ message loop
So I felt like creating a small library to make IRC bots. It's separated in two classes. TelClient is a class that handles the low-level socket programming and ...
1
vote
1
answer
2k
views
Multithreaded telnet chat server in Java
I have writed a multithreaded telnet chat application in Java. In main method I run telnet server. In server class at run method I bind in specified port (8189) and I spawn listener threads for every ...
3
votes
1
answer
2k
views
TCP/IP multithread chat
I'm learning C# and would love to receive some feedback for my code.
Server:
...
4
votes
1
answer
2k
views
TCP chat room in Python
I have recently started looking into networking with Python. I saw some tutorials about the socket library so I decided to give a "live chat room" idea a go. It works (on Windows, ...
5
votes
1
answer
77
views
SOXXY: a daemon stated IRC client project
This script is basically a proxy service; except it doesn't require an active client connection. In fact it expects the client connection to connect before, and disconnect after every transaction. ...
3
votes
1
answer
3k
views
Chat server implemented using Java NIO
I am learning Java's NIO and as an exercise, I have implemented a simple chat server. I would like to ask if I am using NIO's features in the correct way.
...
5
votes
0
answers
739
views
A full-duplex connection to an IRC server
This connection class can be used, through composition, to make IRC clients for different kinds of IRC services.
...
7
votes
1
answer
709
views
Server-side of a chat application
I have written a server-side and the client-side of a chat application. I would like to improve it and I am unsure about my server construct and have absolutely no idea if there is a better way to do ...
-4
votes
1
answer
3k
views
Multi client chat application
I want this code to be reviewed, please.
chatServer.java
...
8
votes
1
answer
2k
views
Simple chat console app
I wanted to practice using sockets and multithreading. This is simple code where I start a Server and connect to it via Client ...