Setup a listening IRC client that connects using TCP sockets.
This commit is contained in:
commit
9cf15e55c9
2
clean
Executable file
2
clean
Executable file
@ -0,0 +1,2 @@
|
||||
cd /workspace/sigIRC
|
||||
find . -type f -name *.class -delete
|
1
readme.md
Normal file
1
readme.md
Normal file
@ -0,0 +1 @@
|
||||
Use https://datatracker.ietf.org/doc/html/rfc1459 as a reference for building an IRC client.
|
5
run
Executable file
5
run
Executable file
@ -0,0 +1,5 @@
|
||||
cd /workspace/sigIRC
|
||||
javac -Xlint:unchecked -cp . sigIRC.java
|
||||
printf "\n\n\nRunning Program...\n\n"
|
||||
java sigIRC
|
||||
./clean
|
29
sigIRC.java
Normal file
29
sigIRC.java
Normal file
@ -0,0 +1,29 @@
|
||||
import java.io.BufferedReader;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStreamReader;
|
||||
import java.io.PrintWriter;
|
||||
import java.net.Socket;
|
||||
|
||||
public class sigIRC{
|
||||
static Socket socket;
|
||||
static PrintWriter out;
|
||||
static BufferedReader in;
|
||||
public static void main(String[] args) {
|
||||
try {
|
||||
socket = new Socket("projectdivar.com",6667);
|
||||
out = new PrintWriter(socket.getOutputStream(),true);
|
||||
in=new BufferedReader(new InputStreamReader(socket.getInputStream()));
|
||||
out.println("NICK sigonasr2");
|
||||
out.println("USER sigonasr2 localhost localhost Sig");
|
||||
while (true) {
|
||||
String line;
|
||||
if ((line=in.readLine())!=null) {
|
||||
System.out.println(line);
|
||||
}
|
||||
}
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user