X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=error.h;h=94a44854cfdb961c136dcca35fb6850f27a33e89;hp=31903062ab7be0f30d2939cb088d9da45989dd85;hb=70d1779ed65ed4fb71680743aba2e6ca8aebb43c;hpb=ffb2eaa90429f6d5c3d369509efcdf91c5463dad diff --git a/error.h b/error.h index 31903062..94a44854 100644 --- a/error.h +++ b/error.h @@ -16,7 +16,6 @@ DEFINE_ERRLIST_OBJECT_ENUM; #define TIME_ERRORS #define CLOSE_ON_FORK_ERRORS #define DAEMON_ERRORS -#define UDP_SEND_ERRORS #define GUI_ERRORS #define RINGBUFFER_ERRORS #define SCORE_ERRORS @@ -223,7 +222,7 @@ extern const char **para_errlist[]; #define NET_ERRORS \ PARA_ERROR(NAME_TOO_LONG, "name too long for struct sockaddr_un"), \ - PARA_ERROR(ADDRESS_LOOKUP, "address lookup / socket creation failed"), \ + PARA_ERROR(ADDRESS_LOOKUP, "can not resolve requested address"),\ PARA_ERROR(CHMOD, "failed to set socket mode"), \ PARA_ERROR(SENDMSG, "sendmsg() failed"), \ PARA_ERROR(RECVMSG, "recvmsg() failed"), \ @@ -235,6 +234,11 @@ extern const char **para_errlist[]; PARA_ERROR(UDP_OVERRUN, "output buffer overrun"), \ +#define UDP_SEND_ERRORS \ + PARA_ERROR(TARGET_EXISTS, "requested target is already present"),\ + PARA_ERROR(TARGET_NOT_FOUND, "requested target not found") + + #define HTTP_RECV_ERRORS \ PARA_ERROR(HTTP_RECV_OVERRUN, "http_recv: output buffer overrun"), \