r50: Whoops. This actually had to be committed to the virthost branch,
[nbd.git] / nbd-client.c
index 094b775..379a3bd 100644 (file)
 #include <linux/ioctl.h>
 #include "cliserv.h"
 
-/**
- * Open a connection to a given host on a given port.
- * @param name The host to connect to
- * @param port The port to connect to
- * @return A connected socket to the given host on the given port
- **/
 int opennet(char *name, int port)
 {
        int sock;
@@ -64,11 +58,6 @@ int opennet(char *name, int port)
        return sock;
 }
 
-/**
- * Do everything
- * @todo cut this thing into little tiny manageable pieces, preferably with a
- * chainsaw.
- **/
 int main(int argc, char *argv[])
 {
        int port, sock, nbd, one = 1;