All Questions
3 questions
2
votes
1
answer
87
views
C program to "monitor" NGINX status with AF_INET
I'm trying to implement a simple "monitoring" tool in C to be used on our servers to check NGINX status, executed periodically with a cron task.
This is my very ...
2
votes
1
answer
14k
views
Validating e-mail address input in C
I have this little function to validate e-mail. It's a little piece of code to search major mistakes in e-mail input and it's part of a bigger program I have to complete as a school assignment. Is ...
13
votes
2
answers
10k
views
Sending an SMS message in C
Recently I've been fiddling with the idea of sending a text message using C. Looking at a few options, I thought that using libcurl to send an SMTP email using TLS for some security would be the best ...