if(status == 200) {
W3_Set_Method(w3, "LIST");
W3_NNTP_Send_Request(w3);
- }else if(status == 215){
+ } else if(status == 215) {
W3_Set_Method(w3, "GROUP");
W3_Set_Path(w3, w3url->path + 1);
W3_NNTP_Send_Request(w3);
- }else if(status == 211 || status == 223){
+ } else if(status == 211 || status == 223) {
W3_Set_Method(w3, "HEAD");
W3_NNTP_Send_Request(w3);
- }else if(status == 221){
+ } else if(status == 221) {
W3_Set_Method(w3, "BODY");
W3_NNTP_Send_Request(w3);
- }else if(status == 222){
+ } else if(status == 222) {
W3_Set_Method(w3, "NEXT");
W3_NNTP_Send_Request(w3);
- }else{
+ } else {
W3_NNTP_Disconnect(w3);
}
}
} else if(strcmp(protocol, "ftp") == 0) {
#endif
#ifdef NNTP_SUPPORT
- } else if(strcmp(protocol, "nntp") == 0) {
+ } else if(strcmp(protocol, "nntp") == 0 || strcmp(protocol, "news") == 0) {
#endif
} else {
__W3_Debug("Protocol", "Not suppported");
}
void W3_Send_Request(struct W3* w3) {
- if(0){
+ if(0) {
#ifdef HTTP_SUPPORT
- }else if(strcmp(w3->protocol, "http") == 0
+ } else if(strcmp(w3->protocol, "http") == 0
#ifdef SSL_SUPPORT
- || strcmp(w3->protocol, "https") == 0
+ || strcmp(w3->protocol, "https") == 0
#endif
) {
__W3_HTTP_Request(w3);
__W3_FTP_Request(w3);
#endif
#ifdef NNTP_SUPPORT
- } else if(strcmp(w3->protocol, "nntp") == 0) {
+ } else if(strcmp(w3->protocol, "nntp") == 0 || strcmp(w3->protocol, "news") == 0) {
__W3_NNTP_Request(w3);
#endif
#ifdef FILE_SUPPORT
int len = __W3_Auto_Read(w3, buf, w3->readsize);
if(len <= 0) break;
int i;
- for(i = 0; i < len; i++){
- if(buf[i] == '\n'){
+ for(i = 0; i < len; i++) {
+ if(buf[i] == '\n') {
int sendstatus = -1;
char* senddata = NULL;
bool freedata = false;
- if(flag & 1){
- if(strcmp(line, ".") == 0){
+ if(flag & 1) {
+ if(strcmp(line, ".") == 0) {
flag &= ~1;
int j;
- for(j = 0; data[j] != 0; j++){
- if(data[j] == ' '){
+ for(j = 0; data[j] != 0; j++) {
+ if(data[j] == ' ') {
data[j] = 0;
sendstatus = atoi(data);
senddata = data + j + 1;
}
}
freedata = true;
- }else{
+ } else {
char* tmp = data;
data = __W3_Concat3(tmp, strlen(data) != 0 ? "\n" : "", line);
free(tmp);
}
- }else{
+ } else {
int j;
- for(j = 0; line[j] != 0; j++){
- if(line[j] == ' '){
+ for(j = 0; line[j] != 0; j++) {
+ if(line[j] == ' ') {
line[j] = 0;
sendstatus = atoi(line);
senddata = line + j + 1;
}
}
}
- if(sendstatus != -1){
+ if(sendstatus != -1) {
void* funcptr = __W3_Get_Event(w3, "nntpresp");
if(funcptr != NULL) {
void (*func)(struct W3*, int, char*) = (void (*)(struct W3*, int, char*))funcptr;
func(w3, sendstatus, senddata);
}
}
- if(freedata){
+ if(freedata) {
free(data);
data = malloc(1);
data[0] = 0;
free(line);
line = malloc(1);
line[0] = 0;
- }else if(buf[i] != '\r'){
+ } else if(buf[i] != '\r') {
cbuf[0] = buf[i];
char* tmp = line;
line = __W3_Concat(tmp, cbuf);
free(buf);
}
-void W3_NNTP_Send_Request(struct W3* w3){
- if(strcasecmp(w3->method, "LIST") == 0){
+void W3_NNTP_Send_Request(struct W3* w3) {
+ if(strcasecmp(w3->method, "LIST") == 0) {
(*(int*)w3->generic) |= 1;
__W3_Auto_Write(w3, "LIST\r\n", 6);
- }else if(strcasecmp(w3->method, "HEAD") == 0){
+ } else if(strcasecmp(w3->method, "HEAD") == 0) {
(*(int*)w3->generic) |= 1;
__W3_Auto_Write(w3, "HEAD\r\n", 6);
- }else if(strcasecmp(w3->method, "BODY") == 0){
+ } else if(strcasecmp(w3->method, "BODY") == 0) {
(*(int*)w3->generic) |= 1;
__W3_Auto_Write(w3, "BODY\r\n", 6);
- }else if(strcasecmp(w3->method, "NEXT") == 0){
+ } else if(strcasecmp(w3->method, "NEXT") == 0) {
__W3_Auto_Write(w3, "NEXT\r\n", 6);
- }else if(strcasecmp(w3->method, "GROUP") == 0){
+ } else if(strcasecmp(w3->method, "GROUP") == 0) {
__W3_Auto_Write(w3, "GROUP ", 6);
__W3_Auto_Write(w3, w3->path, strlen(w3->path));
__W3_Auto_Write(w3, "\r\n", 2);
}
-
-
-}
-
-void W3_NNTP_Disconnect(struct W3* w3){
- __W3_Auto_Write(w3, "QUIT\r\n", 6);
}
+void W3_NNTP_Disconnect(struct W3* w3) { __W3_Auto_Write(w3, "QUIT\r\n", 6); }