Changeset 9467 in ntrip
- Timestamp:
- Jun 10, 2021, 11:03:23 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ntripserver/ntripserver.c
r9466 r9467 927 927 if (bind(socket_tcp, (struct sockaddr *)&caster, sizeof(caster)) < 0) { 928 928 perror("ERROR: bind failed"); 929 reconnect_sec_max = 0; 930 output_init = 0; 929 931 break; 930 932 } 931 933 if (listen(socket_tcp, 3) < 0) { 932 934 perror("listen"); 935 reconnect_sec_max = 0; 936 output_init = 0; 933 937 break; 934 938 } … … 937 941 (socklen_t*)&addrlen)) < 0) { 938 942 perror("ERROR: accept"); 943 reconnect_sec_max = 0; 944 output_init = 0; 939 945 break; 940 946 }
Note:
See TracChangeset
for help on using the changeset viewer.