vlp-7 More documentation in code.
authorRafał Długołęcki <kontakt@dlugolecki.net.pl>
Thu, 1 Aug 2013 21:30:48 +0000 (23:30 +0200)
committerRafał Długołęcki <kontakt@dlugolecki.net.pl>
Thu, 1 Aug 2013 21:30:48 +0000 (23:30 +0200)
src/help/help.cpp
src/lgconfig/lgconfig.cpp
src/net/lognet.cpp

index 12839ece3af74810e98343775b6227cf12b3e63f..d2cf4f0de5ef139ad48c42c146848c884a83e940 100644 (file)
@@ -55,8 +55,7 @@ char names[14][40] = {
 
 class Tag {
 public:
-       Tag()
-       {
+       Tag() {
                tag_type=0;
                strcpy(tag_label, "");
                strcpy(tag_link, "");
@@ -93,7 +92,6 @@ HTMLAnalyzer::HTMLAnalyzer()
        verbatim = FALSE;
 }
 
-
 bool HTMLAnalyzer::LoadFile(char *fname)
 {
        QFile f(fname);
@@ -146,13 +144,13 @@ bool HTMLAnalyzer::LoadFile(char *fname)
                                tags.append(pomt);
                                break;
                        }
-               }/* while length>0 */
+               }
                if (verbatim) {
                        pomt = new Tag;
                        pomt->tag_type = TAG_BREAK;
                        tags.append(pomt);
                }
-       } /* eof */
+       }
        f.close();
        return TRUE;
 }
@@ -463,6 +461,9 @@ void QHTML::mousePressEvent(QMouseEvent *ev)
        }
 }
 
+/**
+ * @attention Currently not in use
+ */
 void QHTML::back()
 {
 }
@@ -580,7 +581,7 @@ void QHTML::DrawList()
                                cx = 5;
                                cy = cy + p.fontMetrics().height();
                                break;
-                       }//switch
+                       }
                        pom = analyzer->tags.next();
                }
                p.end();
index ce241aae169999c4ab1d31dc253facd92d819f01..b130153b47e11ceef37ac4d923de6f27a6c4c48b 100644 (file)
@@ -27,7 +27,8 @@ class VLPEntry {
 public:
        int ID;
        char addr[255];
-       int type;  /* 0 - explicit */
+       /** 0 - explicit */
+       int type;
        char progdir[255];
        char homedir[255];
        char item[255];
@@ -102,6 +103,9 @@ bool QInstall::check_addr(char *addr)
        return TRUE;
 }
 
+/**
+ * @attention Currently not in use
+ */
 void QInstall::Info()
 {
 }
index f6211bbb88f05de40fc3aa1e72038257bd8875a9..7a93bc0661b919dd188ef21523117900918aaadd 100644 (file)
@@ -289,11 +289,20 @@ void NETMOD::write_at_console(char *s)
        send_to_kernel(&msg);
 }
 
+/**
+ * Sends message to kernel
+ * @param msg Message to send.
+ */
 void NETMOD::send_to_kernel(MESSAGE *msg)
 {
        write(kernel_sock, msg, sizeof(MESSAGE));
 }
 
+/**
+ * Sends message to given node
+ * @param lnk Interpreter link.
+ * @param msg Message to send.
+ */
 void NETMOD::send_to_node(NETlink *lnk, MESSAGE *msg)
 {
        msg->msg_type = MSG_NET;
@@ -303,6 +312,10 @@ void NETMOD::send_to_node(NETlink *lnk, MESSAGE *msg)
        }
 }
 
+/**
+ * Sends message to interpreter
+ * @param msg Message to send.
+ */
 void NETMOD::send_to_int(MESSAGE *msg)
 {
        INTlink *pomlink;
@@ -313,8 +326,6 @@ void NETMOD::send_to_int(MESSAGE *msg)
        }
 }
 
-
-
 void NETMOD::accept_connection()
 {
        unsigned int sz;
@@ -380,8 +391,9 @@ void NETMOD::check_node(int n, int sc)
 }
 
 
-/************** Internal message from kernel or INT ********************/
-
+/**
+ * Internal message from kernel or INT
+ */
 void NETMOD::get_internal()
 {
        int nr;
@@ -501,11 +513,11 @@ void NETMOD::get_internal()
                                                };
                                                break;
                                        break;
-                                       } /* MSg_VLP */
+                                       }
                                }
                        }
-               }/* ISSET */
-       } /* select >0 */
+               }
+       }
 }
 
 void NETMOD::get_message(NETlink *lnk)
@@ -612,11 +624,11 @@ void NETMOD::get_message(NETlink *lnk)
                                                send_to_int(&msg);
                                        }
                                        break;
-                               } /* end switch */
-                       }   
-               } /* nr > 0 */
+                               }
+                       }
+               }
 
-       } /* end if used */
+       }
 }
 
 
@@ -824,7 +836,7 @@ void NETMOD::propagate_msg(MESSAGE *msg)
 
        pomlink = findNETlink(msg->param.pword[4]);
        if ((pomlink != NULL) && (pomlink->connected))
-               send_to_node(pomlink,msg);
+               send_to_node(pomlink, msg);
        else {
                if (msg->param.pword[1] == MSG_INT) {
                        send_to_int(msg);
@@ -1022,7 +1034,7 @@ void NETMOD::disconnect_seq()
        Links.clear();
 }
 
-NETlink *NETMOD::findNETlink(int node)
+NETlink * NETMOD::findNETlink(int node)
 {
        NETlink *pomlink;
        pomlink = Links.first();
@@ -1035,7 +1047,7 @@ NETlink *NETMOD::findNETlink(int node)
        return pomlink;
 }
 
-INTlink *NETMOD::findINTlink(int id)
+INTlink * NETMOD::findINTlink(int id)
 {
        INTlink *pomlink;
        pomlink = Interpreters.first();
@@ -1048,8 +1060,9 @@ INTlink *NETMOD::findINTlink(int id)
 }
 
 
-/* ----------------    Sending code to a remote node -------------- */
-
+/**
+ * Sending code to a remote node
+ */
 void NETMOD::transmit_file(int ton, char *fname, int fromINT)
 {
        FILE *f;
@@ -1065,7 +1078,7 @@ void NETMOD::transmit_file(int ton, char *fname, int fromINT)
        fd_set rset;
        fd_set wset;
 
-       /***************** CCD FILE*/
+       /***************** CCD FILE */
        strcpy(fn, fname);
        strcat(fn, ".ccd");
        f = fopen(fn, "rb");
@@ -1157,7 +1170,7 @@ void NETMOD::transmit_file(int ton, char *fname, int fromINT)
                        if (FD_ISSET(sock, &rset))
                                tsock = accept(sock, (struct sockaddr*)&svr,
                                                                        &sz);
-               if (tsock>0) {
+               if (tsock > 0) {
                        close(sock);
                        while (!feof(f)) {
                                i = fread(&proto, 1, sizeof(proto), f);
@@ -1213,7 +1226,7 @@ void NETMOD::conn_info(int sk)
        write(sk, &m, sizeof(MESSAGE));
 }
 
-int main(int argc,char **argv)
+int main(int argc, char **argv)
 {
        NETMOD netter(argv[1]);
        netter.run();