Server-client chat with a bit more


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Server-client chat with a bit more
# 1  
Old 05-12-2009
Question Server-client chat with a bit more

The task is to create a server client chat that contains a few basic safeguards against floods etc and which is capable of issuing at least one or two commands on the client computer. Working samples of such arrangements abound but freeware/shareware samples are not readily available. A catch in all this is that the server will probably work in a *nix environment but the majority of client users will be on a windows computer.

I have a little bit of programming experience but networking and/or sockets are definitely weak points with me. So, the question is, where to begin? A brief overview of what I'm looking at would be helpful, as wood links to explanatory forum posts I mayn't have found while searching, as well as any reference links, sample snippets or fullblown code, freeware/shareware projects, and finally book titles that delve into these matters might provide a more solid foundation upon which to build.

Thanks for your time and insights.
# 2  
Old 05-12-2009
Google for 'irc' - get the 'source' and 'delve'.
# 3  
Old 05-12-2009
Thank you but many server hosting companies disallow the use of irc. I'm on a dedicated server but have also seen the negative side of irc and have tended to shy away from it. Before seriously considering it, I'd really need a pros and cons fact sheet about it and a big long list of traps to look out for.

I'm currently using parachat until I can get something better. Parachat works fine enough but it's a resource hog, expensive to get much in the way of features, and none of those features will handle the few tasks I require.

For what it's worth, I googled many times over before posting here.
# 4  
Old 05-13-2009
What do you mean by the "negative" side of IRC? The obnoxious people lurking around there or the botnets controlled via IRC? Both shouldn't be a problem if you set up your own private IRC server, that has no connection to any other.

Another possible solution might be Jabber.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Programming

Trouble with pipes in chat client on linux

I'm writing a simple chat client in C++ on linux to connect to a win32 chat server on my computer also written in C++. I'm confident that the server works but the chat client is giving me some trouble. I'm forking the chat client and have one process dealing with incoming messages and another... (14 Replies)
Discussion started by: vindy
14 Replies

2. Programming

logic understanding for inter client chat server

hello everyone, i am making chat server in linux using c. i have made programs in which group chat can take place between multiple clients but i am not able to understand how to make 2 particular clients chat with each other. please help!!! (1 Reply)
Discussion started by: sweetbella
1 Replies

3. Homework & Coursework Questions

Help with server client chat system

request create a chat system in linux where a user type smth and all the other users connected to server get the message.then a user have to create join leave or delete a channel of chat if he created it.i did the server and the client but i dont know how to implemt the chat rooms.i was ... (1 Reply)
Discussion started by: demonmind
1 Replies

4. Programming

How can i make two client to chat with each other?

How can i make two client to chat with each other.. without any work of server, i mean peer to peer i am making chat messenger on which all host will connect to/via server and if any host want private chat then thay work independently... this is code(attached) which i have made for server... (1 Reply)
Discussion started by: bt87
1 Replies

5. UNIX for Dummies Questions & Answers

Server/client chat

I want to make the following programm. Using the server/client model I want 2 client to connect to the server then the server sends back to the clients the ip address and a number of a poort in order to open a udp connection between clients without using the server? What I have done since now is... (2 Replies)
Discussion started by: kasma
2 Replies

6. Programming

Chat client-server program

Good day everyone, I'm doing a chat client-server program:server is to receive messages from clients through a TCP port and multicast them back to all clients through a UDP port. This is my client program. I'd not know why it just sends and receives msg from server once, then it stops. Is... (1 Reply)
Discussion started by: powermind
1 Replies

7. Programming

multiuser chat server closes when one client closes. code included

I have been trying to write a very basic chat program but at the moment I am having problems getting it to be multiuser as it closes all connections when one client shutsdown. I have also been having problems trying to get the program to display a list of usernames to the clients. I have tried... (0 Replies)
Discussion started by: dooker
0 Replies
Login or Register to Ask a Question