I can`t find 64bit version of ypops, and i wonder is there any plan`s for this?
I`m a Ubuntu 64bit user, and i hope there is a chance for me (and other users of 64bit distros). Any help,news, plans...?



Anonymous said...
Hi Thomas,
I had to make some changes before it would successfully compile on an AMD64 system (Xubuntu 6.06 x86_64, 2.6.15-29-amd64-generic):
1) Cleared PLATFORM_FLAGS from Makefile
2) src/ServiceClient.cpp Changed:
2a) UINT ServiceClientThread(void *lpParameter)
to UINT ServiceClientThread(int lpParameter)
2b) SOCKET sock = (reinterpret_cast<SOCKET>(lpParameter));
to SOCKET sock = lpParameter;
3) src/ServiceClient.h Changed:
3a) UINT ServiceClientThread(void *lpParameter);
to UINT ServiceClientThread(int lpParameter);
4) src/SmtpListener.cpp Changed:
4a) UINT ServiceSmtpClientThread(void *lpParameter);
to UINT ServiceSmtpClientThread(int lpParameter);
4b) logFile.Write(LOG_ADVANCED,"Got SMTP request on socket %d\n", (int)socket);
to logFile.Write(LOG_ADVANCED,"Got SMTP request on socket %d\n", (int)sockfd);
4c) UINT ServiceSmtpClientThread(void *lpParameter)
to UINT ServiceSmtpClientThread(int lpParameter)
4d) SOCKET sock = (reinterpret_cast<SOCKET>(lpParameter));
to SOCKET sock = lpParameter;
Thanks and hope the above helps.
mrfitz



Users browsing this forum: No registered users and 0 guests
![]() |