Advertisement
Guest User

Untitled

a guest
Nov 7th, 2010
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.21 KB | None | 0 0
  1. mongo_connection_options * make_mongo_connection_options( char host[255], int port ){
  2.         mongo_connection_options opts[1];
  3.         strcpy( opts->host , host );
  4.         opts->port = port;
  5.         return opts;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement