Changeset 472 in ntrip for trunk/ntripserver
- Timestamp:
- Jun 7, 2007, 9:47:24 AM (18 years ago)
- Location:
- trunk/ntripserver
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ntripserver/NtripLinuxServer.c
r471 r472 1 1 /* 2 * $Id: NtripLinuxServer.c,v 1.3 0 2007/06/06 14:56:59stoecker Exp $2 * $Id: NtripLinuxServer.c,v 1.31 2007/06/06 15:11:54 stoecker Exp $ 3 3 * 4 4 * Copyright (c) 2003...2007 … … 37 37 38 38 /* CVS revision and version */ 39 static char revisionstr[] = "$Revision: 1.3 0$";40 static char datestr[] = "$Date: 2007/06/06 1 4:56:59$";39 static char revisionstr[] = "$Revision: 1.31 $"; 40 static char datestr[] = "$Date: 2007/06/06 15:11:54 $"; 41 41 42 42 #include <ctype.h> … … 73 73 enum OUTMODE { HTTP = 1, RTSP = 2, NTRIPV1 = 3, END }; 74 74 75 #define AGENTSTRING "NTRIP Ntrip ServerLinux"75 #define AGENTSTRING "NTRIP NtripLinuxServer" 76 76 #define BUFSZ 1024 77 77 #define SZ 64 -
trunk/ntripserver/makefile
r469 r472 1 1 #!/bin/make 2 2 3 NtripServerLinux: NtripLinuxServer.c3 ntripserver: NtripLinuxServer.c 4 4 $(CC) -Wall -W -O3 $? -DNDEBUG -o $@ 5 5 6 6 debug: NtripLinuxServer.c 7 $(CC) -Wall -W -O3 $? -o NtripServerLinux7 $(CC) -Wall -W -O3 $? -o ntripserver 8 8 9 9 clean:
Note:
See TracChangeset
for help on using the changeset viewer.