
# be sure to include the modules needed for your code

def main(conn, addr, data, trusted=False):
    # trusted=False is there for some of the checks. Don't remove it.
    # its value is whether or not a user is logged in or not
    # this value is not used for actions.
    #
    # perform your checks here
    #
    # if packet/conn fails the check
        return True
    # otherwise packet/conn should pass this check
    return False
