Undisposable Clients 0.4 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Undisposable Clients 0.4 (Default branch)
# 1  
Old 01-03-2008
Undisposable Clients 0.4 (Default branch)

Undisposable Clients provides easy-to-use API kits for using Undisposable.net in various programming languages. Undisposable.net is a collaborative protection system against disposable email accounts like jetable, pookmail, 10minutemail. This is a language independent Web service. It currently supports REST and XML-RPC protocols and PHP serialization. It is meant to prevent userbase contamination by fake accounts. It requires no registration. License: MIT/X Consortium License Changes:
undisposable.org has been lost; this release has migrated to undisposable.net.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Windows & DOS: Issues & Discussions

Stopping Windows 10 Clients?

As I know you are all aware Windows 10 poses some serious security concerns. My question is three fold. 1. Is there a way to stop Windows 10 clients from accessing a web server? 2. What would be the MS counter punch to that? ie: how would they circumvent. (mask browser credentials?) 3. Is... (4 Replies)
Discussion started by: ScottyPC
4 Replies

2. Shell Programming and Scripting

Script to shutdown XP clients

My staff seem to have a habit of leaving thier PCs on over night so I need to write a short script to shutdown any XP clients logged into the local samba domain that I can run as a cron job at a set time. I can list the connected clients and their IP addresses with: $ smbstatus -b Samba... (6 Replies)
Discussion started by: barrydocks
6 Replies

3. Programming

Clients - Server ( UDP )

Hello, I have a question: I want to create a n client to one server connection. This is the client-server algorithm. Enybody help to make the changes? (0 Replies)
Discussion started by: MaHmur
0 Replies

4. Fedora

NTP Clients not sync

hi guys I have several Red Hat 5.7(7) all of them sync time with two NTP Servers based on Windows but the issue is I configure the NTP service, I start the ntp service and use ntpdate -u to set the time the first time This is what I do 1. Configure /etc/ntp.conf restrict default kod... (2 Replies)
Discussion started by: karlochacon
2 Replies

5. Programming

forking for multiple clients

hello everyone, i am making a tcp chat server using c in linux. i have used socket programming to connect the server and the client. can anyone please let me know how i can use forking for multiple clients?? thank you (1 Reply)
Discussion started by: sweetbella
1 Replies

6. AIX

nimsh configuration on the clients

Hi, I do not want to use rsh to install and push software on my clients because we are trying to increase the security in our company. I setup nimsh (nimconfig -c) on my master (6.1TL6SP6) without any errors. I install openssl on my client (5.3TL12SP3) and ran nimclient -c as indicated in the... (2 Replies)
Discussion started by: cforget2810
2 Replies

7. UNIX for Advanced & Expert Users

Benchmarking a new Solaris, with four different clients

Good morning, for the impatient: I have a new backup-server and need to monitor, what the machine can do, what's the best way of finding that out? I will tell the story right from the beginning, so you have a clue about what's going on: I have a setup of three machines: A new... (6 Replies)
Discussion started by: PatrickBaer
6 Replies

8. UNIX for Advanced & Expert Users

Tracking NTP Clients

I need to find out the NTP Clients which are syncing with my NTP Server in a Unix(Linux/Solaris) Machine. For eg. How many Stratum 2 Servers sync the time with my Stratum1 Server. Is there any way to track it? edit by bakunin: moving the thread to where it belongs: the technical forums. (4 Replies)
Discussion started by: hottyspidy
4 Replies

9. IP Networking

Multihomed DNS Clients?

I'm not sure it that's the right term for what I'm asking about, but it's the best I could come up with. Here is my situation... I'm setting up a network using OpenVPN. The clients I'm setting up will need to be able to access their own DNS servers (to resolve internal names at their location)... (4 Replies)
Discussion started by: deckard
4 Replies
Login or Register to Ask a Question
XSetEventQueueOwner(3)						  XLIB FUNCTIONS					    XSetEventQueueOwner(3)

NAME
XSetEventQueueOwner - set event queue owner on a shared Xlib/XCB connection SYNTAX
#include <X11/Xlib-xcb.h> void XSetEventQueueOwner(Display *dpy, enum XEventQueueOwner owner); ARGUMENTS
dpy Specifies the connection to the X server. owner Specifies the event queue ownership: XlibOwnsEventQueue (default) Xlib owns the event queue. Use the Xlib event-handling functions. Do not call the XCB event-handling functions. XCBOwnsEventQueue XCB owns the event queue. Use the XCB event-handling functions. Do not call the Xlib event-handling functions. DESCRIPTION
While a client using Xlib/XCB can issue requests and handle their replies or errors with either Xlib or XCB, only one can own and handle the event queue. By default, Xlib must own the event queue, for compatibility with legacy Xlib clients. Clients can call XSetEventQueue- Owner immediately after XOpenDisplay to let XCB own the event queue instead. Clients may not call XSetEventQueueOwner at any other time, as this will potentially lose responses. SEE ALSO
XOpenDisplay(3), XGetXCBConnection(3), Xlib - C Language X Interface X Version 11 libX11 1.5.0 XSetEventQueueOwner(3)