aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorepochqwert <epoch@hacking.allowed.org>2016-05-29 05:20:49 +0000
committerepochqwert <epoch@hacking.allowed.org>2016-05-29 05:20:49 +0000
commitbe631b8d472091bde8c1914b3bc87ac77e125124 (patch)
tree5049f47f1755c512e6256b7d0eda4a6fba980fc7
parentd192cd24925f2925b577b721edbf80e65dc3d73c (diff)
downloadlibirc-be631b8d472091bde8c1914b3bc87ac77e125124.tar.gz
libirc-be631b8d472091bde8c1914b3bc87ac77e125124.zip
derp
-rw-r--r--examples/link.c24
1 files changed, 17 insertions, 7 deletions
diff --git a/examples/link.c b/examples/link.c
index 73af3b8..90d9403 100644
--- a/examples/link.c
+++ b/examples/link.c
@@ -1,3 +1,4 @@
+//modified to work better with URC
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -12,12 +13,17 @@ void extra_handler(int fd) {
return;
}
-void sendto_others(int fd,char *action,char *msg) {
+void sendto_others(int fd,char *action,char *msg,struct user *user) {
int i;
char tmp[512];
for(i=0;fds[i] != -1;i++) {
if(fds[i] != fd) {
- snprintf(tmp,sizeof(tmp)-1,"%s %s :%s\r\n",action,chans[fdtoi(fds[i])],msg);
+ if(chans[fdtoi(fds[i])][0]=='u') {
+ snprintf(tmp,sizeof(tmp)-1,":%s!%s@%s %s %s :%s\n",user->nick,user->user,user->host,action,chans[fdtoi(fds[i])]+1,msg);
+ } else {
+ snprintf(tmp,sizeof(tmp)-1,"%s %s :<%s> %s\r\n",action,chans[fdtoi(fds[i])],user->nick,msg);
+ }
+ printf("writing: %s\n",tmp);
write(fds[i],tmp,strlen(tmp));
}
}
@@ -29,9 +35,13 @@ void message_handler(int fd,char *from,struct user *user,char *line) {
if(line[0] == '\x01' && strlen(line) > 9 && !strncmp(line+1,"ACTION ",7) && line[strlen(line)-1] == '\x01') {
snprintf(tmp,sizeof(tmp)-1,"%cACTION %s %s",1,user->nick,line+8);
} else {
- snprintf(tmp,sizeof(tmp)-1,"<%s> %s",user->nick,line);
+ //if(chans[fdtoi(fd)][0]=='u') {
+ snprintf(tmp,sizeof(tmp)-1,"%s",line);
+ //} else {
+ // snprintf(tmp,sizeof(tmp)-1,"<%s> %s",user->nick,line);
+ //}
}
- sendto_others(fd,"PRIVMSG",tmp);
+ sendto_others(fd,"PRIVMSG",tmp,user);
}
}
@@ -58,15 +68,15 @@ void line_handler(int fd,char *line) {//this should be built into the libary?
if(a[0] && user->nick && a[1]) {
if(!strcmp(a[0],"JOIN")) {
snprintf(tmp,sizeof(tmp)-1,"%s has joined %s",user->nick,a[1]+(*a[1]==':'));
- sendto_others(fd,"NOTICE",tmp);
+ sendto_others(fd,"NOTICE",tmp,user);
}
if(!strcmp(a[0],"PART")) {
snprintf(tmp,sizeof(tmp)-1,"%s has parted %s",user->nick,a[1]+(*a[1]==':'));
- sendto_others(fd,"NOTICE",tmp);
+ sendto_others(fd,"NOTICE",tmp,user);
}
if(!strcmp(a[0],"QUIT")) {
snprintf(tmp,sizeof(tmp)-1,"%s has quited %s",user->nick,a[1]+(*a[1]==':'));
- sendto_others(fd,"NOTICE",tmp);
+ sendto_others(fd,"NOTICE",tmp,user);
}
}
free(user);